Skip to content

@technobuddha > library > Geometry > Coordinates

Type Alias: Polar

ts
type Polar = {
  r: number;
  φ: number;
};

Defined in: @types/geometry.ts:25

Polar coordinate (angle, radius)

Properties

PropertyTypeDescriptionDefined in
rnumberThe radius (distance from the origin).src/@types/geometry.ts:27
φnumberThe angle.src/@types/geometry.ts:29