- java.lang.Object
-
- org.jgrapht.alg.drawing.model.Point2D
-
- All Implemented Interfaces:
Serializable
public class Point2D extends Object implements Serializable
A 2-dimensional point in Euclidean space.- Author:
- Dimitrios Michail
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Point2D(double x, double y)
Create a new point
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
getNumDimensions()
Get the number of dimensions of the pointdouble
getX()
Get the x coordinatedouble
getY()
Get the y coordinateint
hashCode()
static Point2D
of(double x, double y)
Create a new pointString
toString()
-
-
-
Method Detail
-
getNumDimensions
public int getNumDimensions()
Get the number of dimensions of the point- Returns:
- the number of dimensions of the point
-
getX
public double getX()
Get the x coordinate- Returns:
- the x coordinate
-
getY
public double getY()
Get the y coordinate- Returns:
- the y coordinate
-
of
public static Point2D of(double x, double y)
Create a new point- Parameters:
x
- the x coordinatey
- the y coordinate- Returns:
- the point
-
-