Uses of Class
org.jzy3d.plot3d.primitives.Point

Packages that use Point
org.jzy3d.maths Provides mathematical tools: coordinates, spaces, grids, and trigonometry for 2 and 3 dimensions. 
org.jzy3d.plot3d.builder.concrete   
org.jzy3d.plot3d.primitives Provides 3d primitives that either implement plot3d.rendering.Drawable or plot3d.rendering.Composite3d, and thus provide a draw() and transform() function for the plot3d.rendering.Scene
org.jzy3d.plot3d.primitives.enlightables   
org.jzy3d.plot3d.primitives.pickable   
 

Uses of Point in org.jzy3d.maths
 

Methods in org.jzy3d.maths with parameters of type Point
 void BoundingBox3d.add(Point p)
          Add a Point3d to the BoundingBox3d.
 

Uses of Point in org.jzy3d.plot3d.builder.concrete
 

Methods in org.jzy3d.plot3d.builder.concrete that return Point
protected  Point[] OrthonormalTessellator.getEstimatedQuadSurroundingPoint(int xi, int yi)
           
protected  Point[] OrthonormalTessellator.getRealQuadStandingOnPoint(int xi, int yi)
           
 

Methods in org.jzy3d.plot3d.builder.concrete with parameters of type Point
protected  boolean[] RingTessellator.isInside(Point[] p, float[] radius, float minRadius, float maxRadius)
          Indicates which point lies inside and outside the given min and max radius.
protected  boolean[] OldRingTesselator.isInside(Point[] p, float[] radius, float minRadius, float maxRadius)
          Deprecated. Indicates which point lies inside and outside the given min and max radius.
protected  float RingTessellator.radius2d(Point p)
           
protected  float OldRingTesselator.radius2d(Point p)
          Deprecated.  
protected  boolean OrthonormalTessellator.validZ(Point p)
           
protected  boolean OrthonormalTessellator.validZ(Point[] points)
           
 

Uses of Point in org.jzy3d.plot3d.primitives
 

Fields in org.jzy3d.plot3d.primitives with type parameters of type Point
protected  List<Point> InterpolatedLineStrip.controlPoints
           
protected  List<Point> InterpolatedLineStrip.interpolatedPoints
           
protected  List<Point> Polygon.points
           
protected  List<Point> LineStrip.points
           
 

Methods in org.jzy3d.plot3d.primitives that return Point
 Point Polygon.get(int p)
           
 Point LineStrip.get(int p)
           
protected  Point InterpolatedLineStrip.toPoint(Coord3d coord, Color color, float width)
           
 

Methods in org.jzy3d.plot3d.primitives that return types with arguments of type Point
 List<Point> Polygon.getAll()
           
 List<Point> InterpolatedLineStrip.getControlPoints()
           
 List<Point> InterpolatedLineStrip.getInterpolatedPoints()
           
 List<Point> LineStrip.getPoints()
           
protected  List<Point> InterpolatedLineStrip.toPoints(List<Coord3d> coords, Color color, float width)
           
 

Methods in org.jzy3d.plot3d.primitives with parameters of type Point
 void Quad.add(Point point)
          Add a point to the polygon.
 void Polygon.add(Point point)
          Add a point to the polygon.
 void LineStrip.add(Point point)
           
 

Method parameters in org.jzy3d.plot3d.primitives with type arguments of type Point
 void LineStrip.addAll(List<Point> points)
           
 

Uses of Point in org.jzy3d.plot3d.primitives.enlightables
 

Fields in org.jzy3d.plot3d.primitives.enlightables with type parameters of type Point
protected  List<Point> EnlightablePolygon.points
           
 

Methods in org.jzy3d.plot3d.primitives.enlightables that return Point
 Point EnlightablePolygon.get(int p)
          Retrieve a point from the Polygon.
 

Methods in org.jzy3d.plot3d.primitives.enlightables with parameters of type Point
 void EnlightablePolygon.add(Point point)
          Add a point to the polygon.
 

Uses of Point in org.jzy3d.plot3d.primitives.pickable
 

Subclasses of Point in org.jzy3d.plot3d.primitives.pickable
 class PickablePoint