Class Point2ifx

    • Constructor Detail

      • Point2ifx

        public Point2ifx()
        Construct a zero point.
      • Point2ifx

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

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

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

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

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

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

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

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