points overview
Table of contents
- utils
- MutablePoint2 (type alias)
- MutablePoint3 (type alias)
- MutablePoint4 (type alias)
- MutablePolar (type alias)
- MutableSpherical (type alias)
- Point2 (type alias)
- Point3 (type alias)
- Point4 (type alias)
- Polar (type alias)
- Spherical (type alias)
utils
MutablePoint2 (type alias)
Signature
export type MutablePoint2 = { x: number; y: number }
MutablePoint3 (type alias)
Signature
export type MutablePoint3 = { x: number; y: number; z: number }
MutablePoint4 (type alias)
Signature
export type MutablePoint4 = { x: number; y: number; z: number; w: number }
MutablePolar (type alias)
Signature
export type MutablePolar = { radius: number; phi: number }
MutableSpherical (type alias)
Signature
export type MutableSpherical = { radius: number; phi: number; theta: number }
Point2 (type alias)
Signature
export type Point2 = Readonly<MutablePoint2>
Point3 (type alias)
Signature
export type Point3 = Readonly<MutablePoint3>
Point4 (type alias)
Signature
export type Point4 = Readonly<MutablePoint4>
Polar (type alias)
Signature
export type Polar = Readonly<MutablePolar>
Spherical (type alias)
Signature
export type Spherical = Readonly<MutableSpherical>