UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

7 lines 241 B
import { CatmullRomCurve3 } from "three"; const curve = new CatmullRomCurve3([], undefined, "catmullrom", 0.5); export default (vecs, t) => { curve.points = vecs; return curve.getPoint(t); }; //# sourceMappingURL=getVecOnCurve.js.map