@technobuddha > library > Geometry > Coordinates
Type Alias: XY
ts
type XY = {
x: number;
y: number;
};Defined in: @types/geometry.ts:72
Represents a two-dimensional amount x and y aspects.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
x | number | The horizontal amount. | src/@types/geometry.ts:76 |
y | number | The vertical amount. | src/@types/geometry.ts:80 |