UNPKG

@polygonjs/polygonjs

Version:

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

7 lines (6 loc) 302 B
import { CatmullRomCurve3, Vector3 } from 'three'; import { NamedFunction3 } from './_Base'; export declare class catmullRomCurve3GetPoint extends NamedFunction3<[CatmullRomCurve3, number, Vector3]> { static type(): string; func(curve: CatmullRomCurve3, t: number, target: Vector3): Vector3; }