Skip to content

@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

PropertyTypeDescriptionDefined in
xnumberThe horizontal amount.src/@types/geometry.ts:76
ynumberThe vertical amount.src/@types/geometry.ts:80