nLerp method

Q nLerp(
  1. Q o,
  2. double amount
)

Normalized linear interpolation between this and o by amount.

Faster than sLerp but does not maintain constant angular velocity.

Implementation

Q nLerp(Q o, double amount) => lerp(o, amount).normalize();