lerp method

Quaternion lerp(
  1. Quaternion other,
  2. double t
)

Implementation

Quaternion lerp(Quaternion other, double t) {
  return QuaternionUtils.lerp(this, other, t);
}