- java.lang.Object
- 
- javafx.geometry.Point2D
 
- 
- All Implemented Interfaces:
- Interpolatable<Point2D>
 
 public class Point2D extends Object implements Interpolatable<Point2D> A 2D geometric point that usually represents the x, y coordinates. It can also represent a relative magnitude vector's x, y magnitudes.- Since:
- JavaFX 2.0
 
- 
- 
Constructor SummaryConstructors Constructor Description Point2D(double x, double y)Creates a new instance ofPoint2D.
 - 
Method SummaryModifier and Type Method Description Point2Dadd(double x, double y)Returns a point with the specified coordinates added to the coordinates of this point.Point2Dadd(Point2D point)Returns a point with the coordinates of the specified point added to the coordinates of this point.doubleangle(double x, double y)Computes the angle (in degrees) between the vector represented by this point and the specified vector.doubleangle(Point2D point)Computes the angle (in degrees) between the vector represented by this point and the vector represented by the specified point.doubleangle(Point2D p1, Point2D p2)Computes the angle (in degrees) between the three points with this point as a vertex.Point3DcrossProduct(double x, double y)Computes cross product of the vector represented by this instance and the specified vector.Point3DcrossProduct(Point2D vector)Computes cross product of the vector represented by this instance and the specified vector.doubledistance(double x1, double y1)Computes the distance between this point and point(x1, y1).doubledistance(Point2D point)Computes the distance between this point and the specifiedpoint.doubledotProduct(double x, double y)Computes dot (scalar) product of the vector represented by this instance and the specified vector.doubledotProduct(Point2D vector)Computes dot (scalar) product of the vector represented by this instance and the specified vector.booleanequals(Object obj)Indicates whether some other object is "equal to" this one.doublegetX()The x coordinate.doublegetY()The y coordinate.inthashCode()Returns a hash code value for the point.Point2Dinterpolate(Point2D endValue, double t)The function calculates an interpolated value along the fractiontbetween0.0and1.0.doublemagnitude()Computes magnitude (length) of the relative magnitude vector represented by this instance.Point2Dmidpoint(double x, double y)Returns a point which lies in the middle between this point and the specified coordinates.Point2Dmidpoint(Point2D point)Returns a point which lies in the middle between this point and the specified point.Point2Dmultiply(double factor)Returns a point with the coordinates of this point multiplied by the specified factorPoint2Dnormalize()Normalizes the relative magnitude vector represented by this instance.Point2Dsubtract(double x, double y)Returns a point with the specified coordinates subtracted from the coordinates of this point.Point2Dsubtract(Point2D point)Returns a point with the coordinates of the specified point subtracted from the coordinates of this point.StringtoString()Returns a string representation of thisPoint2D.
 
- 
- 
- 
Field Detail- 
ZEROpublic static final Point2D ZERO Point or vector with both coordinates set to 0.
 
- 
 - 
Method Detail- 
getXpublic final double getX() The x coordinate.- Returns:
- the x coordinate
 
 - 
getYpublic final double getY() The y coordinate.- Returns:
- the y coordinate
 
 - 
distancepublic double distance(double x1, double y1)Computes the distance between this point and point(x1, y1).- Parameters:
- x1- the x coordinate of other point
- y1- the y coordinate of other point
- Returns:
- the distance between this point and point (x1, y1).
 
 - 
distancepublic double distance(Point2D point) Computes the distance between this point and the specifiedpoint.- Parameters:
- point- the other point
- Returns:
- the distance between this point and the specified point.
- Throws:
- NullPointerException- if the specified- pointis null
 
 - 
addpublic Point2D add(double x, double y) Returns a point with the specified coordinates added to the coordinates of this point.- Parameters:
- x- the X coordinate addition
- y- the Y coordinate addition
- Returns:
- the point with added coordinates
- Since:
- JavaFX 8.0
 
 - 
addpublic Point2D add(Point2D point) Returns a point with the coordinates of the specified point added to the coordinates of this point.- Parameters:
- point- the point whose coordinates are to be added
- Returns:
- the point with added coordinates
- Throws:
- NullPointerException- if the specified- pointis null
- Since:
- JavaFX 8.0
 
 - 
subtractpublic Point2D subtract(double x, double y) Returns a point with the specified coordinates subtracted from the coordinates of this point.- Parameters:
- x- the X coordinate subtraction
- y- the Y coordinate subtraction
- Returns:
- the point with subtracted coordinates
- Since:
- JavaFX 8.0
 
 - 
multiplypublic Point2D multiply(double factor) Returns a point with the coordinates of this point multiplied by the specified factor- Parameters:
- factor- the factor multiplying the coordinates
- Returns:
- the point with multiplied coordinates
- Since:
- JavaFX 8.0
 
 - 
subtractpublic Point2D subtract(Point2D point) Returns a point with the coordinates of the specified point subtracted from the coordinates of this point.- Parameters:
- point- the point whose coordinates are to be subtracted
- Returns:
- the point with subtracted coordinates
- Throws:
- NullPointerException- if the specified- pointis null
- Since:
- JavaFX 8.0
 
 - 
normalizepublic Point2D normalize() Normalizes the relative magnitude vector represented by this instance. Returns a vector with the same direction and magnitude equal to 1. If this is a zero vector, a zero vector is returned.- Returns:
- the normalized vector represented by a Point2Dinstance
- Since:
- JavaFX 8.0
 
 - 
midpointpublic Point2D midpoint(double x, double y) Returns a point which lies in the middle between this point and the specified coordinates.- Parameters:
- x- the X coordinate of the second endpoint
- y- the Y coordinate of the second endpoint
- Returns:
- the point in the middle
- Since:
- JavaFX 8.0
 
 - 
midpointpublic Point2D midpoint(Point2D point) Returns a point which lies in the middle between this point and the specified point.- Parameters:
- point- the other endpoint
- Returns:
- the point in the middle
- Throws:
- NullPointerException- if the specified- pointis null
- Since:
- JavaFX 8.0
 
 - 
anglepublic double angle(double x, double y)Computes the angle (in degrees) between the vector represented by this point and the specified vector.- Parameters:
- x- the X magnitude of the other vector
- y- the Y magnitude of the other vector
- Returns:
- the angle between the two vectors measured in degrees
- Since:
- JavaFX 8.0
 
 - 
anglepublic double angle(Point2D point) Computes the angle (in degrees) between the vector represented by this point and the vector represented by the specified point.- Parameters:
- point- the other vector
- Returns:
- the angle between the two vectors measured in degrees,
         NaNif any of the two vectors is a zero vector
- Throws:
- NullPointerException- if the specified- pointis null
- Since:
- JavaFX 8.0
 
 - 
anglepublic double angle(Point2D p1, Point2D p2) Computes the angle (in degrees) between the three points with this point as a vertex.- Parameters:
- p1- one point
- p2- other point
- Returns:
- angle between the vectors (this, p1) and (this, p2) measured
         in degrees, NaNif the three points are not different from one another
- Throws:
- NullPointerException- if- p1or- p2is null
- Since:
- JavaFX 8.0
 
 - 
magnitudepublic double magnitude() Computes magnitude (length) of the relative magnitude vector represented by this instance.- Returns:
- magnitude of the vector
- Since:
- JavaFX 8.0
 
 - 
dotProductpublic double dotProduct(double x, double y)Computes dot (scalar) product of the vector represented by this instance and the specified vector.- Parameters:
- x- the X magnitude of the other vector
- y- the Y magnitude of the other vector
- Returns:
- the dot product of the two vectors
- Since:
- JavaFX 8.0
 
 - 
dotProductpublic double dotProduct(Point2D vector) Computes dot (scalar) product of the vector represented by this instance and the specified vector.- Parameters:
- vector- the other vector
- Returns:
- the dot product of the two vectors
- Throws:
- NullPointerException- if the specified- vectoris null
- Since:
- JavaFX 8.0
 
 - 
crossProductpublic Point3D crossProduct(double x, double y) Computes cross product of the vector represented by this instance and the specified vector.- Parameters:
- x- the X magnitude of the other vector
- y- the Y magnitude of the other vector
- Returns:
- the cross product of the two vectors
- Since:
- JavaFX 8.0
 
 - 
crossProductpublic Point3D crossProduct(Point2D vector) Computes cross product of the vector represented by this instance and the specified vector.- Parameters:
- vector- the other vector
- Returns:
- the cross product of the two vectors
- Throws:
- NullPointerException- if the specified- vectoris null
- Since:
- JavaFX 8.0
 
 - 
interpolatepublic Point2D interpolate(Point2D endValue, double t) The function calculates an interpolated value along the fractiontbetween0.0and1.0. Whent= 1.0,endValis returned.- Specified by:
- interpolatein interface- Interpolatable<Point2D>
- Parameters:
- endValue- target value
- t- fraction between- 0.0and- 1.0
- Returns:
- interpolated value
- Since:
- 13
 
 - 
equalspublic boolean equals(Object obj) Indicates whether some other object is "equal to" this one.
 - 
hashCodepublic int hashCode() Returns a hash code value for the point.
 - 
toStringpublic String toString() Returns a string representation of thisPoint2D. This method is intended to be used only for informational purposes. The content and format of the returned string might vary between implementations. The returned string might be empty but cannot benull.
 
- 
 
-