Uses of Class
ixagon.surface.mapper.Point3D
-
Packages that use Point3D Package Description ixagon.surface.mapper -
-
Uses of Point3D in ixagon.surface.mapper
Methods in ixagon.surface.mapper that return Point3D Modifier and Type Method Description Point3D
BezierSurface. getBezierPoint(int index)
Get the target bezier pointPoint3D
QuadSurface. getBezierPoint(int index)
Point3D
SuperSurface. getBezierPoint(int index)
Get target Bezier control pointPoint3D[]
BezierSurface. getBezierPoints()
Get all bezier pointsPoint3D
BezierSurface. getCenter()
Get the average center point of the surfacePoint3D
QuadSurface. getCenter()
Find the average position of all the control points, use that as the center point.Point3D
SuperSurface. getCenter()
Get the average center point of the surfacePoint3D
BezierSurface. getCornerPoint(int index)
Get the target corner pointPoint3D
QuadSurface. getCornerPoint(int index)
Get a specific cornerPoint3D
SuperSurface. getCornerPoint(int index)
Get the target corner pointPoint3D[]
BezierSurface. getCornerPoints()
Get all corner pointsPoint3D[]
QuadSurface. getCornerPoints()
Get all cornersPoint3D[]
SuperSurface. getCornerPoints()
Get all corner pointsPoint3D
BezierSurface. screenCoordinatesToQuad(float x, float y)
Translates a point on the screen into a point in the surface.Point3D
QuadSurface. screenCoordinatesToQuad(float x, float y)
Translate a point on the screen into a point in the surface.Point3D
SuperSurface. screenCoordinatesToQuad(float x, float y)
Translates a point on the screen into a point in the surface.Methods in ixagon.surface.mapper with parameters of type Point3D Modifier and Type Method Description static float
QuadSurface. CCW(Point3D p1, Point3D p2, Point3D p3)
Three points are a counter-clockwise turn if ccw > 0, clockwise if ccw < 0, and collinear if ccw = 0 because ccw is a determinant that gives the signed area of the triangle formed by p1, p2 and p3.
-