Skip to content

points overview


Table of contents


utils

MutableSpherical (type alias)

Signature

export type MutableSpherical = { radius: number; phi: number; theta: number }

Point2 (type alias)

Signature

export type Point2 = { readonly x: number; readonly y: number }

Point3 (type alias)

Signature

export type Point3 = { readonly x: number; readonly y: number; readonly z: number }

Point4 (type alias)

Signature

export type Point4 = { readonly x: number; readonly y: number; readonly z: number; readonly w: number }

Spherical (type alias)

Signature

export type Spherical = { readonly radius: number; readonly phi: number; readonly theta: number }