#include <revolution/mtx.h>
void C_QUATLerp (
const Quaternion* p,
const Quaternion* q,
Quaternion* r,
f32 t );
#define QUATLerp C_QUATLerp
p |
Pointer to the first Quaternion. |
q |
Pointer to the second Quaternion. |
r |
Pointer to resultant Quaternion. Contains the result of interpolation between p and q. Acceptable if r = p or r = q. |
t |
Interpolation parameter. If t =0.0, the result becomes equal to p. If t =1.0, the result becomes equal to q. |
None.
Performs linear interpolation on two quaternions.
03/01/2006 Initial version.