| 203 | } |
| 204 | |
| 205 | Vector4<float> KeyframeController::GetTranslate(float normTime, int32_t i0, int32_t i1) |
| 206 | { |
| 207 | Vector4<float> trn = mTranslations[i0] + normTime * (mTranslations[i1] - mTranslations[i0]); |
| 208 | return trn; |
| 209 | } |
| 210 | |
| 211 | Matrix4x4<float> KeyframeController::GetRotate(float normTime, int32_t i0, int32_t i1) |
| 212 | { |