Lines Matching refs:t
90 QUATLerp(QUAT* pOut, const QUAT* __restrict q1, const QUAT* __restrict q2, f32 t)
96 pOut->x = t * ( q2->x - q1->x ) + q1->x;
97 pOut->y = t * ( q2->y - q1->y ) + q1->y;
98 pOut->z = t * ( q2->z - q1->z ) + q1->z;
99 pOut->w = t * ( q2->w - q1->w ) + q1->w;
194 QUATSlerp(QUAT* pOut, const QUAT* __restrict q1, const QUAT* __restrict q2, f32 t)
215 tp = ::std::sinf((1.0F - t) * theta) / sin_th;
216 tq *= ::std::sinf( t * theta ) / sin_th;
221 tp = 1.0F - t;
222 tq = tq * t;
234 QUATSquad(QUAT* pOut, const QUAT* p, const QUAT* a, const QUAT* b, const QUAT* q, f32 t)
245 t2 = 2 * t * ( 1.0F - t );
246 QUATSlerp(&pq, p, q, t);
247 QUATSlerp(&ab, a, b, t);