UNPKG

@matematrolii/sketchbook

Version:

3D matematrolii playground built on three.js and cannon.js

11 lines (10 loc) 245 B
import { PathNode } from "./PathNode"; export declare class Path { nodes: { [nodeName: string]: PathNode; }; private rootNode; constructor(root: THREE.Object3D); addNode(child: any): void; connectNodes(): void; }