HomeSort by relevance Sort by last modified time
    Searched full:slerp (Results 1 - 15 of 15) sorted by null

  /external/eigen/demos/opengl/
camera.h 29 orientation.slerp(alpha,other.orientation));
quaternion_demo.cpp 122 // quaternion slerp
124 { return a.slerp(t,b); }
188 // Euler angles slerp
606 but = new QRadioButton("quaternion slerp");
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 249 * Note that the generated rotation will be stored as a quaternion and interpolated using a spherical linear interpolation (slerp)<br>
264 * Note that the generated rotation will be stored as a quaternion and interpolated using a spherical linear interpolation (slerp)<br>
277 // since we are using quaternions and slerp for rotation interpolation, we cannot interpolate over an angle higher than PI
434 rotations[j] = rot.slerp(((Rotation) keyFrames[i]).rotation, ((Rotation) keyFrames[key]).rotation, val);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
RotationTrack.java 95 q.set(startRotation).slerp(endRotation, value);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Rotation2D.h 87 inline Rotation2D slerp(Scalar t, const Rotation2D& other) const function in class:Eigen::Rotation2D
Quaternion.h 176 Quaternion slerp(Scalar t, const Quaternion& other) const;
416 Quaternion<Scalar> Quaternion<Scalar>::slerp(Scalar t, const Quaternion& other) const function in class:Eigen::Quaternion
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 92 inline Rotation2D slerp(Scalar t, const Rotation2D& other) const function in class:Eigen::Rotation2D
Quaternion.h 155 * see http://en.wikipedia.org/wiki/Slerp
157 template<class OtherDerived> Quaternion<Scalar> slerp(Scalar t, const QuaternionBase<OtherDerived>& other) const;
692 QuaternionBase<Derived>::slerp(Scalar t, const QuaternionBase<OtherDerived>& other) const function in class:Eigen::QuaternionBase
  /external/eigen/bench/
quat_slerp.cpp 19 return a.slerp(t,b);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 182 slerp(q1, q2, interp); method
619 * <code>slerp</code> sets this quaternion's value as an interpolation
629 public Quaternion slerp(Quaternion q1, Quaternion q2, float t) { method in class:Quaternion
678 * Sets the values of this quaternion to the slerp from itself to q2 by
686 public void slerp(Quaternion q2, float changeAmnt) { method in class:Quaternion
    [all...]
Transform.java 184 this.rot.slerp(t1.rot,t2.rot,delta);
  /external/eigen/doc/
C08_TutorialGeometry.dox 116 rot3 = rot1.slerp(alpha,rot2);\endcode</td></tr>
  /external/eigen/test/
geo_quaternion.cpp 37 QuatType q = q0.slerp(t,q1);
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 463 static void slerp(double qa[4], const double qb[4], double t) function in namespace:WebCore
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
OrientedBoundingBox.java 358 // // the slerp of the two input quaternions with t-value of 1/2. The
    [all...]

Completed in 1223 milliseconds