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
    Modifier and Type
    Method
    Description
    static Bounds
    BoundsUtils.createBoundingBox(Point3D p1, Point3D p2, Point3D p3, Point3D p4, Point3D p5, Point3D p6, Point3D p7, Point3D p8)
     
  • Uses of Point3D in javafx.geometry

    Fields in javafx.geometry declared as Point3D
    Modifier and Type
    Field
    Description
    static final Point3D
    Point3D.ZERO
    Point or vector with all three coordinates set to 0.
    Methods in javafx.geometry that return Point3D
    Modifier and Type
    Method
    Description
    Point3D.add(double x, double y, double z)
    Returns a point with the specified coordinates added to the coordinates of this point.
    Point3D.add(Point3D 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.
    Point3D.midpoint(Point3D point)
    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 factor
    Point3D.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.
    Point3D.subtract(Point3D 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 Point3D
    Modifier and Type
    Method
    Description
    Point3D.add(Point3D point)
    Returns a point with the coordinates of the specified point added to the coordinates of this point.
    double
    Point3D.angle(Point3D point)
    Computes the angle (in degrees) between the vector represented by this point and the vector represented by the specified point.
    double
    Point3D.angle(Point3D p1, Point3D p2)
    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
    Point3D.distance(Point3D point)
    Computes the distance between this point and the specified point.
    double
    Point3D.dotProduct(Point3D vector)
    Computes dot (scalar) product of the vector represented by this instance and the specified vector.
    Point3D.midpoint(Point3D point)
    Returns a point which lies in the middle between this point and the specified point.
    Point3D.subtract(Point3D 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 Point3D
    Modifier and Type
    Field
    Description
    static 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 Point3D
    Modifier and Type
    Method
    Description
    final Point3D
    Rotate.getAxis()
    Gets the value of the axis property.
    Methods in javafx.scene.transform that return types with arguments of type Point3D
    Modifier and Type
    Method
    Description
    Rotate.axisProperty()
    Defines the axis of rotation at the pivot point.
    Methods in javafx.scene.transform with parameters of type Point3D
    Modifier and Type
    Method
    Description
    final void
    Rotate.setAxis(Point3D value)
    Sets the value of the axis property.
    Constructors in javafx.scene.transform with parameters of type Point3D
    Modifier
    Constructor
    Description
     
    Rotate(double angle, Point3D axis)
    Creates a three-dimensional Rotate transform.