2021-02-19 16:07:53 +01:00
|
|
|
/**
|
|
|
|
* Represents a Point in a 2 dimensional coordinate system.
|
|
|
|
*/
|
|
|
|
export interface Point {
|
|
|
|
/**
|
|
|
|
* The X coordinate of this Point. (double)
|
|
|
|
*/
|
2023-09-26 11:39:17 +02:00
|
|
|
x: number
|
2021-02-19 16:07:53 +01:00
|
|
|
/**
|
|
|
|
* The Y coordinate of this Point. (double)
|
|
|
|
*/
|
2023-09-26 11:39:17 +02:00
|
|
|
y: number
|
2021-02-19 16:07:53 +01:00
|
|
|
}
|