QuaternionCurve.js 361 B

12345678910
  1. function QuaternionCurve() {
  2. }
  3. QuaternionCurve.prototype.interpolate = function(t,useShortestPath) {
  4. Polycode.QuaternionCurve_interpolate(this.__ptr, t,useShortestPath)
  5. }
  6. QuaternionCurve.prototype.generatePointsFromCurves = function(wCurve,xCurve,yCurve,zCurve) {
  7. Polycode.QuaternionCurve_generatePointsFromCurves(this.__ptr, wCurve,xCurve,yCurve,zCurve)
  8. }