@technobuddha > library > Geometry > Coordinates
Type Alias: Polar
ts
type Polar = {
r: number;
φ: number;
};Defined in: @types/geometry.ts:25
Polar coordinate (angle, radius)
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
r | number | The radius (distance from the origin). | src/@types/geometry.ts:27 |
φ | number | The angle. | src/@types/geometry.ts:29 |