@technobuddha > library > Geometry > Coordinates
Type Alias: Cartesian
ts
type Cartesian = {
x: number;
y: number;
};Defined in: @types/geometry.ts:6
Represents a point in 2D Cartesian coordinate space.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
x | number | The x-coordinate value. | src/@types/geometry.ts:8 |
y | number | The y-coordinate value. | src/@types/geometry.ts:10 |