UNPKG

@nexys/math-ts

Version:

[![npm version](https://badge.fury.io/js/%40nexys%2Fmath-ts.svg)](https://www.npmjs.com/package/@nexys/math-ts) [![TavisCI](https://travis-ci.com/Nexysweb/tableau-wdc-react.svg?branch=master)](https://travis-ci.com/github/Nexysweb/math-ts) [![Deployment](

9 lines (8 loc) 738 B
export declare const toPolar: (x: number, y: number) => [number, number]; export declare const toCartesian: (x: number, y: number) => number[]; export declare const toCylindrical: (x: number, y: number, z: number) => [number, number, number]; export declare const toCartesianFromCylindrical: (modulus: number, arg: number, z: number) => number[]; export declare const toSpherical: (x: number, y: number, z: number) => [number, number, number]; export declare const toSphericalFromCylindrical: (modulus: number, arg: number, z: number) => number[]; export declare const toCylindricalFromSpherical: (r: number, t: number, a: number) => number[]; export declare const toCartesianFromSpherical: (r: number, t: number, a: number) => number[];