UNPKG

d3-3d

Version:

D3.js plugin for 3d visualization written in Typescript

8 lines (7 loc) 218 B
import { Point3D, Point2D } from './types'; interface OrthographicOptions { origin: Point2D; scale: number; } export declare function orthographic(d: Point3D, options: OrthographicOptions): Point2D; export {};