Constructor and description |
---|
Point(double x, double y) Construct a point for the given x and y coordinates |
Type Params | Return Type | Name and description |
---|---|---|
|
double[] |
asArray()
|
|
java.util.List<java.lang.Double> |
asList()
|
|
static Point |
getPointAtIndex(java.util.List coords, int index) Gets a point from the given list of coordinate lists |
|
java.lang.String |
toString() |
|
static Point |
valueOf(java.lang.Number x, java.lang.Number y) Construct a point for the given x and y values |
|
static Point |
valueOf(java.util.List<java.lang.Number> coords) Construct a point for the given coordinates supplied in the list |
The x and y values that indicate the location of the point
The x and y values that indicate the location of the point
Construct a point for the given x and y coordinates
x
- The x positiony
- The y position
Gets a point from the given list of coordinate lists
coords
- The multi dimensional coordinate listindex
- The index of the pointConstruct a point for the given x and y values
x
- The x valuey
- The y valueConstruct a point for the given coordinates supplied in the list
coords
- A list containing 2 entries for the x and y positionsGroovy Documentation