Class Point3ifx

    • Constructor Detail

      • Point3ifx

        public Point3ifx()
        Construct a zero point.
      • Point3ifx

        public Point3ifx​(javafx.beans.property.IntegerProperty x,
                         javafx.beans.property.IntegerProperty y,
                         javafx.beans.property.IntegerProperty 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.
      • Point3ifx

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

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

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

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

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

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

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