UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

12 lines (11 loc) 263 B
"use strict"; import { NamedFunction3 } from "./_Base"; export class catmullRomCurve3GetPoint extends NamedFunction3 { static type() { return "catmullRomCurve3GetPoint"; } func(curve, t, target) { curve.getPoint(t, target); return target; } }