Class Tuple2dfx<RT extends Tuple2dfx<? super RT>>

    • Field Detail

      • x

        javafx.beans.property.DoubleProperty x
        x coordinate.
      • y

        javafx.beans.property.DoubleProperty y
        y coordinate.
    • Constructor Detail

      • Tuple2dfx

        public Tuple2dfx()
        Construct a zero tuple.
      • Tuple2dfx

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

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

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

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

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

        public Tuple2dfx​(double x,
                         double y)
        Construct a tuple with the two given coordinates.
        Parameters:
        x - x coordinate.
        y - y coordinate.
    • Method Detail

      • set

        void set​(javafx.beans.property.DoubleProperty x,
                 javafx.beans.property.DoubleProperty y)
        Change the x and y properties.
        Parameters:
        x - the new x property.
        y - the new y property.
      • clone

        @Pure
        public RT clone()
        Description copied from interface: Tuple2D
        Clone this point.
        Specified by:
        clone in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Overrides:
        clone in class Object
        Returns:
        the clone.
      • equals

        @Pure
        public boolean equals​(Object t1)
        Description copied from interface: Tuple2D
        Returns true if the Object t1 is of type Tuple2D and all of the data members of t1 are equal to the corresponding data members in this Tuple2D.
        Specified by:
        equals in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Overrides:
        equals in class Object
        Parameters:
        t1 - the object with which the comparison is made
        Returns:
        true or false
      • hashCode

        @Pure
        public int hashCode()
        Description copied from interface: Tuple2D
        Returns a hash code value based on the data values in this object. Two different Tuple2D objects with identical data values (i.e., Tuple2D.equals(Object) returns true) will return the same hash code value. Two objects with different data members may return the same hash value, although this is not likely.
        Specified by:
        hashCode in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Overrides:
        hashCode in class Object
        Returns:
        the integer hash code value
      • toJson

        public void toJson​(JsonBuffer buffer)
        Description copied from interface: JsonableObject
        Replies the Json representation of this node.
        Specified by:
        toJson in interface JsonableObject
        Parameters:
        buffer - the Json buffer.
      • xProperty

        @Pure
        public javafx.beans.property.DoubleProperty xProperty()
        Replies the x property.
        Returns:
        the x property.
      • yProperty

        @Pure
        public javafx.beans.property.DoubleProperty yProperty()
        Replies the y property.
        Returns:
        the y property.
      • getX

        public double getX()
        Description copied from interface: Tuple2D
        Get the x coordinate.
        Specified by:
        getX in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Returns:
        the x coordinate.
      • ix

        public int ix()
        Description copied from interface: Tuple2D
        Get the x coordinate.
        Specified by:
        ix in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Returns:
        the x coordinate.
      • setX

        public void setX​(int x)
        Description copied from interface: Tuple2D
        Set the x coordinate.
        Specified by:
        setX in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Parameters:
        x - value to x coordinate.
      • setX

        public void setX​(double x)
        Description copied from interface: Tuple2D
        Set the x coordinate.
        Specified by:
        setX in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Parameters:
        x - value to x coordinate.
      • getY

        public double getY()
        Description copied from interface: Tuple2D
        Get the y coordinate.
        Specified by:
        getY in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Returns:
        the y coordinate.
      • iy

        public int iy()
        Description copied from interface: Tuple2D
        Get the y coordinate.
        Specified by:
        iy in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Returns:
        the y coordinate.
      • setY

        public void setY​(int y)
        Description copied from interface: Tuple2D
        Set the y coordinate.
        Specified by:
        setY in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Parameters:
        y - value to y coordinate.
      • setY

        public void setY​(double y)
        Description copied from interface: Tuple2D
        Set the y coordinate.
        Specified by:
        setY in interface Tuple2D<RT extends Tuple2dfx<? super RT>>
        Parameters:
        y - value to y coordinate.