UNPKG

ts-useful

Version:

Functions for animation, color transitions, ecliptic, bezier, decasteljau, curves, three dimensional curves, smooth scrolling, random range, randomItem, mobius index, vectors, physics vectors, and easing.

13 lines (12 loc) 292 B
import { ICoordinate3d } from './interfaces/ICoordinate3d'; /** * * @param points ICoordinate3d[] * @param percent number * @returns ICoordinate3d */ export declare const ThreeD: (points: ICoordinate3d[], percent: number) => { x: number; y: number; z: number; };