staticSlerp static method
- @Deprecated(' Static .slerp() has been deprecated. Use is now qm.slerpQuaternions( qa, qb, t ) instead.')
- Quaternion qa,
- Quaternion qb,
- Quaternion qm,
- double t,
Implementation
@Deprecated(' Static .slerp() has been deprecated. Use is now qm.slerpQuaternions( qa, qb, t ) instead.')
static Quaternion staticSlerp(Quaternion qa, Quaternion qb, Quaternion qm, double t) {
return qm.slerpQuaternions(qa, qb, t);
}