Skip to content

@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

PropertyTypeDescriptionDefined in
xnumberThe x-coordinate value.src/@types/geometry.ts:8
ynumberThe y-coordinate value.src/@types/geometry.ts:10