Uses of Class
org.jzy3d.plot3d.primitives.Point
- 
Packages that use Point Package Description org.jzy3d.chart.factories 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 org.jzy3d.plot3d.primitives.enlightables org.jzy3d.plot3d.primitives.pickable org.jzy3d.plot3d.primitives.symbols org.jzy3d.plot3d.rendering.view.annotation org.jzy3d.svm.demos  - 
- 
Uses of Point in org.jzy3d.chart.factories
Methods in org.jzy3d.chart.factories that return Point Modifier and Type Method Description PointIDrawableFactoryDesign. newPoint(Coord3d coord)PointIDrawableFactory. newPointRound(Coord3d coord, Color color, float width)PointNativeDrawableFactory. newPointRound(Coord3d coord, Color color, float width)PointIDrawableFactory. newPointSquare(Coord3d coord, Color color, float width)PointNativeDrawableFactory. newPointSquare(Coord3d coord, Color color, float width) - 
Uses of Point in org.jzy3d.maths
Methods in org.jzy3d.maths with parameters of type Point Modifier and Type Method Description voidBoundingBox3d. add(Point p)Add a Point3d to the BoundingBox3d.Method parameters in org.jzy3d.maths with type arguments of type Point Modifier and Type Method Description voidBoundingBox3d. add(List<Point> pts)static doubleAngle3d. angleSumFromPoints(List<Point> coords)static booleanAngle3d. angleSumFromPointsOfNonIntersectingPolygon(List<Point> coords)static Coord3dNormal. compute(List<Point> points, boolean normalize, boolean averageNormals)Compute the normal for the input list of points. - 
Uses of Point in org.jzy3d.plot3d.builder.concrete
Methods in org.jzy3d.plot3d.builder.concrete that return Point Modifier and Type Method Description 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 Modifier and Type Method Description 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 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 DrawableOrthonormalTessellator. newQuad(Point[] p)protected floatOldRingTesselator. radius2d(Point p)Deprecated.protected floatRingTessellator. radius2d(Point p)protected booleanOrthonormalTessellator. validZ(Point p)protected booleanOrthonormalTessellator. validZ(Point[] points) - 
Uses of Point in org.jzy3d.plot3d.primitives
Fields in org.jzy3d.plot3d.primitives with type parameters of type Point Modifier and Type Field Description protected List<Point>LineStripInterpolated. controlPointsprotected List<Point>LineStripInterpolated. interpolatedPointsprotected List<Point>Geometry. pointsprotected List<Point>LineStrip. pointsMethods in org.jzy3d.plot3d.primitives that return Point Modifier and Type Method Description PointPoint. clone()PointGeometry. get(int p)PointLineStrip. get(int p)PointConcurrentLineStrip. getLastPoint()PointLineStrip. getLastPoint()protected PointLineStripInterpolated. toPoint(Coord3d coord, Color color, float width)Methods in org.jzy3d.plot3d.primitives that return types with arguments of type Point Modifier and Type Method Description List<Point>LineStripInterpolated. getControlPoints()List<Point>LineStripInterpolated. getInterpolatedPoints()List<Point>Geometry. getPoints()Returns the list of the mutable points held by this polygon.List<Point>LineStrip. getPoints()Set<Point>Geometry. getPointSet()Returns a set of the mutable points held by this polygon.protected List<Point>LineStripInterpolated. toPoints(List<Coord3d> coords, Color color, float width)Methods in org.jzy3d.plot3d.primitives with parameters of type Point Modifier and Type Method Description voidConcurrentLineStrip. add(Point point)voidConcurrentLineStripSplitted. add(Point point)voidGeometry. add(Point point)voidGeometry. add(Point... points)voidGeometry. add(Point point, boolean updateBounds)Add a point to the polygon.voidLineStrip. add(Point point)voidLineStrip. add(Point point, boolean updateBounds)voidQuad. add(Point point)Add a point to the polygon.voidConcurrentLineStripSplitted. addAndSplit(Point point)protected voidGeometry. applyPointOrMapperColor(IPainter painter, Point p)Apply mapper color if a mapper is defined and store the result in the point color, or use point color if mapper is undefined.protected voidGeometry. callPointsForFace_SplitInTriangle_NormalAuto(IPainter painter, Point p1, Point p2, Point p3)protected voidGeometry. callPointsForFace_SplitInTriangle_NormalSupplied(IPainter painter, Point p1, Point p2, Point p3, int t)protected Coord3dGeometry. computeNormalAutomatic(Point p1, Point p2, Point p3)protected voidGeometry. drawTriangleNormal(IPainter painter, Point p1, Point p2, Point p3, Coord3d normal)protected voidGeometry. drawTriangleNormal(IPainter painter, Point p1, Point p2, Point p3, Coord3d n1, Coord3d n2, Coord3d n3)voidConcurrentLineStripSplitted. pointColorSelf(IPainter painter, Point p)voidConcurrentLineStripSplitted. pointColorWire(IPainter painter, Point p)Method parameters in org.jzy3d.plot3d.primitives with type arguments of type Point Modifier and Type Method Description voidGeometry. add(List<Point> points)voidLineStrip. addAll(Collection<Point> points)protected Coord3dGeometry. computeNormalAutomatic(List<Point> points)protected voidGeometry. drawPolygonNormal(IPainter painter, List<Point> points, List<Coord3d> normal)protected voidGeometry. drawPolygonNormal(IPainter painter, List<Point> points, Coord3d normal)Constructors in org.jzy3d.plot3d.primitives with parameters of type Point Constructor Description ConcurrentLineStrip(Point c1, Point c2)ConcurrentLineStripSplitted(Point c1, Point c2)Geometry(Color wireframeColor, boolean wireframeDisplayed, Point... points)Geometry(Color wireframeColor, Point... points)Geometry(Point... points)LineStrip(Point... points)LineStrip(Point c1, Point c2)Polygon(Color wire, boolean wireDisplayed, Point... points)Polygon(Color wire, Point... points)Polygon(Point... points)TesselatedPolygon(Point[] points)Constructor parameters in org.jzy3d.plot3d.primitives with type arguments of type Point Constructor Description Geometry(List<Point> points)Polygon(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 Modifier and Type Field Description protected List<Point>EnlightablePolygon. pointsMethods in org.jzy3d.plot3d.primitives.enlightables that return Point Modifier and Type Method Description PointEnlightablePolygon. get(int p)Retrieve a point from thePolygon.Methods in org.jzy3d.plot3d.primitives.enlightables with parameters of type Point Modifier and Type Method Description voidEnlightablePolygon. 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 Modifier and Type Class Description classPickablePoint - 
Uses of Point in org.jzy3d.plot3d.primitives.symbols
Methods in org.jzy3d.plot3d.primitives.symbols with parameters of type Point Modifier and Type Method Description voidAWTNativeSymbolHandler. addSymbolOn(Point point)voidMaskImageSymbolHandler. addSymbolOn(Point point)voidMaskImageSymbolHandler. addSymbolOn(Point point, MaskPair mask)abstract voidSymbolHandler. addSymbolOn(Point point) - 
Uses of Point in org.jzy3d.plot3d.rendering.view.annotation
Subclasses of Point in org.jzy3d.plot3d.rendering.view.annotation Modifier and Type Class Description classCameraDistanceAnnotationDraws the distance of every scene graph drawable object to camera eye.Fields in org.jzy3d.plot3d.rendering.view.annotation declared as Point Modifier and Type Field Description protected PointBarycenterAnnotation. bary - 
Uses of Point in org.jzy3d.svm.demos
Methods in org.jzy3d.svm.demos with parameters of type Point Modifier and Type Method Description protected boolean[]RingInterpolator. isInside(Point[] p, float[] radius, float minRadius, float maxRadius)Indicates which point lies inside and outside the given min and max radius.protected floatRingInterpolator. radius2d(Point p) 
 -