UNPKG

gyrovector

Version:

Gyrovector classes for hyperbolic, Euclidean, and spherical geometries

7 lines (6 loc) 195 B
export type Curvature = { value: number; tan: (x: number) => number; atan: (x: number) => number; }; export declare const createCurvature: (curvature: number) => Readonly<Curvature>;