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 Point
IDrawableFactoryDesign. newPoint(Coord3d coord)
Point
IDrawableFactory. newPointRound(Coord3d coord, Color color, float width)
Point
NativeDrawableFactory. newPointRound(Coord3d coord, Color color, float width)
Point
IDrawableFactory. newPointSquare(Coord3d coord, Color color, float width)
Point
NativeDrawableFactory. 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 void
BoundingBox3d. 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 void
BoundingBox3d. add(List<Point> pts)
static double
Angle3d. angleSumFromPoints(List<Point> coords)
static boolean
Angle3d. angleSumFromPointsOfNonIntersectingPolygon(List<Point> coords)
static Coord3d
Normal. 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 Drawable
OrthonormalTessellator. newQuad(Point[] p)
protected float
OldRingTesselator. radius2d(Point p)
Deprecated.protected float
RingTessellator. radius2d(Point p)
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 Modifier and Type Field Description protected List<Point>
LineStripInterpolated. controlPoints
protected List<Point>
LineStripInterpolated. interpolatedPoints
protected List<Point>
Geometry. points
protected List<Point>
LineStrip. points
Methods in org.jzy3d.plot3d.primitives that return Point Modifier and Type Method Description Point
Point. clone()
Point
Geometry. get(int p)
Point
LineStrip. get(int p)
Point
ConcurrentLineStrip. getLastPoint()
Point
LineStrip. getLastPoint()
protected Point
LineStripInterpolated. 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 void
ConcurrentLineStrip. add(Point point)
void
ConcurrentLineStripSplitted. add(Point point)
void
Geometry. add(Point point)
void
Geometry. add(Point... points)
void
Geometry. add(Point point, boolean updateBounds)
Add a point to the polygon.void
LineStrip. add(Point point)
void
LineStrip. add(Point point, boolean updateBounds)
void
Quad. add(Point point)
Add a point to the polygon.void
ConcurrentLineStripSplitted. addAndSplit(Point point)
protected void
Geometry. 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 void
Geometry. callPointsForFace_SplitInTriangle_NormalAuto(IPainter painter, Point p1, Point p2, Point p3)
protected void
Geometry. callPointsForFace_SplitInTriangle_NormalSupplied(IPainter painter, Point p1, Point p2, Point p3, int t)
protected Coord3d
Geometry. computeNormalAutomatic(Point p1, Point p2, Point p3)
protected void
Geometry. drawTriangleNormal(IPainter painter, Point p1, Point p2, Point p3, Coord3d normal)
protected void
Geometry. drawTriangleNormal(IPainter painter, Point p1, Point p2, Point p3, Coord3d n1, Coord3d n2, Coord3d n3)
void
ConcurrentLineStripSplitted. pointColorSelf(IPainter painter, Point p)
void
ConcurrentLineStripSplitted. pointColorWire(IPainter painter, Point p)
Method parameters in org.jzy3d.plot3d.primitives with type arguments of type Point Modifier and Type Method Description void
Geometry. add(List<Point> points)
void
LineStrip. addAll(Collection<Point> points)
protected Coord3d
Geometry. computeNormalAutomatic(List<Point> points)
protected void
Geometry. drawPolygonNormal(IPainter painter, List<Point> points, List<Coord3d> normal)
protected void
Geometry. 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. points
Methods in org.jzy3d.plot3d.primitives.enlightables that return Point Modifier and Type Method Description Point
EnlightablePolygon. 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 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 Modifier and Type Class Description class
PickablePoint
-
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 void
AWTNativeSymbolHandler. addSymbolOn(Point point)
void
MaskImageSymbolHandler. addSymbolOn(Point point)
void
MaskImageSymbolHandler. addSymbolOn(Point point, MaskPair mask)
abstract void
SymbolHandler. 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 class
CameraDistanceAnnotation
Draws 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 Point
BarycenterAnnotation. 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 float
RingInterpolator. radius2d(Point p)
-