Uses of Class
javafx.geometry.Point3D
Packages that use Point3D
-
Uses of Point3D in com.sun.javafx.geometry
Methods in com.sun.javafx.geometry with parameters of type Point3D -
Uses of Point3D in javafx.geometry
Fields in javafx.geometry declared as Point3DModifier and TypeFieldDescriptionstatic final Point3D
Point3D.ZERO
Point or vector with all three coordinates set to 0.Methods in javafx.geometry that return Point3DModifier and TypeMethodDescriptionPoint3D.add
(double x, double y, double z) Returns a point with the specified coordinates added to the coordinates of this point.Returns a point with the coordinates of the specified point added to the coordinates of this point.Point2D.crossProduct
(double x, double y) Computes cross product of the vector represented by this instance and the specified vector.Point2D.crossProduct
(Point2D vector) Computes cross product of the vector represented by this instance and the specified vector.Point3D.crossProduct
(double x, double y, double z) Computes cross product of the vector represented by this instance and the specified vector.Point3D.crossProduct
(Point3D vector) Computes cross product of the vector represented by this instance and the specified vector.Point3D.midpoint
(double x, double y, double z) Returns a point which lies in the middle between this point and the specified coordinates.Returns a point which lies in the middle between this point and the specified point.Point3D.multiply
(double factor) Returns a point with the coordinates of this point multiplied by the specified factorPoint3D.normalize()
Normalizes the relative magnitude vector represented by this instance.Point3D.subtract
(double x, double y, double z) Returns a point with the specified coordinates subtracted from the coordinates of this point.Returns a point with the coordinates of the specified point subtracted from the coordinates of this point.Methods in javafx.geometry with parameters of type Point3DModifier and TypeMethodDescriptionReturns a point with the coordinates of the specified point added to the coordinates of this point.double
Computes the angle (in degrees) between the vector represented by this point and the vector represented by the specified point.double
Computes the angle (in degrees) between the three points with this point as a vertex.Point3D.crossProduct
(Point3D vector) Computes cross product of the vector represented by this instance and the specified vector.double
Computes the distance between this point and the specifiedpoint
.double
Point3D.dotProduct
(Point3D vector) Computes dot (scalar) product of the vector represented by this instance and the specified vector.Returns a point which lies in the middle between this point and the specified point.Returns a point with the coordinates of the specified point subtracted from the coordinates of this point. -
Uses of Point3D in javafx.scene.transform
Fields in javafx.scene.transform declared as Point3DModifier and TypeFieldDescriptionstatic final Point3D
Rotate.X_AXIS
Specifies the X-axis as the axis of rotation.static final Point3D
Rotate.Y_AXIS
Specifies the Y-axis as the axis of rotation.static final Point3D
Rotate.Z_AXIS
Specifies the Z-axis as the axis of rotation.Methods in javafx.scene.transform that return Point3DModifier and TypeMethodDescriptionfinal Point3D
Rotate.getAxis()
Gets the value of theaxis
property.Methods in javafx.scene.transform that return types with arguments of type Point3DModifier and TypeMethodDescriptionfinal ObjectProperty<Point3D>
Rotate.axisProperty()
Defines the axis of rotation at the pivot point.Methods in javafx.scene.transform with parameters of type Point3DModifier and TypeMethodDescriptionfinal void
Sets the value of theaxis
property.Constructors in javafx.scene.transform with parameters of type Point3D