Class Point3dfx

    • Constructor Detail

      • Point3dfx

        public Point3dfx()
        Construct a zero point.
      • Point3dfx

        public Point3dfx​(javafx.beans.property.DoubleProperty x,
                         javafx.beans.property.DoubleProperty y,
                         javafx.beans.property.DoubleProperty z)
        Construct a point with the given properties for its coordinates.
        Parameters:
        x - property for the x coordinate.
        y - property for the y coordinate.
        z - property for the z coordinate.
      • Point3dfx

        public Point3dfx​(Tuple3D<?> tuple)
        Constructor by copy.
        Parameters:
        tuple - is the tuple to copy.
      • Point3dfx

        public Point3dfx​(int[] tuple)
        Constructor by copy.
        Parameters:
        tuple - is the tuple to copy.
      • Point3dfx

        public Point3dfx​(double[] tuple)
        Constructor by copy.
        Parameters:
        tuple - is the tuple to copy.
      • Point3dfx

        public Point3dfx​(int x,
                         int y,
                         int z)
        Construct a point with the given coordinates.
        Parameters:
        x - x coordinate.
        y - y coordinate.
        z - z coordinate.
      • Point3dfx

        public Point3dfx​(float x,
                         float y,
                         float z)
        Construct a point with the given coordinates.
        Parameters:
        x - x coordinate.
        y - y coordinate.
        z - z coordinate.
      • Point3dfx

        public Point3dfx​(double x,
                         double y,
                         double z)
        Construct a point with the given coordinates.
        Parameters:
        x - x coordinate.
        y - y coordinate.
        z - z coordinate.
      • Point3dfx

        public Point3dfx​(long x,
                         long y,
                         long z)
        Construct a point with the given coordinates.
        Parameters:
        x - x coordinate.
        y - y coordinate.
        z - z coordinate.