Home
last modified time | relevance | path

Searched refs:ResVector3CurveData (Results 1 – 3 of 3) sorted by relevance

/NW4C-1.3.3/sources/libraries/anim/res/
Danim_ResAnimCurve.cpp734 …CalcVector3CurveCV_( math::VEC3* result, bit32* flags, const ResVector3CurveData* pCurve, f32 fram… in CalcVector3CurveCV_()
738 const ResVector3CurveData::FrameValue& frameValue = pCurve->frames.m_KeyValue[index]; in CalcVector3CurveCV_()
751 … const ResVector3CurveData::FrameValue& nextFrameValue = pCurve->frames.m_KeyValue[nextIndex]; in CalcVector3CurveCV_()
823 …void CalcTranslateCurveCV_( math::MTX34* result, bit32* flags, const ResVector3CurveData* pCurve, … in CalcTranslateCurveCV_()
827 const ResVector3CurveData::FrameValue& frameValue = pCurve->frames.m_KeyValue[index]; in CalcTranslateCurveCV_()
843 … const ResVector3CurveData::FrameValue& nextFrameValue = pCurve->frames.m_KeyValue[nextIndex]; in CalcTranslateCurveCV_()
927 CalcVector3Curve( math::VEC3* result, bit32* flags, const ResVector3CurveData* pCurve, f32 frame ) in CalcVector3Curve()
931 if ( pCurve->m_Flags & ResVector3CurveData::FLAG_CONSTANT ) in CalcVector3Curve()
969 void CalcTranslateCurve(math::MTX34* result, bit32* flags, const ResVector3CurveData* pCurve, f32 f… in CalcTranslateCurve()
973 if ( pCurve->m_Flags & ResVector3CurveData::FLAG_CONSTANT ) in CalcTranslateCurve()
/NW4C-1.3.3/include/nw/anim/res/
Danim_ResAnimCurve.h544 typedef ResBakedCurveData<ut::ResVec3_> ResVector3CurveData; //!< @details :private typedef
551 void CalcVector3Curve( math::VEC3* result, bit32* flags, const ResVector3CurveData* pCurve, f32 fra…
553 void CalcTranslateCurve( math::MTX34* result, bit32* flags, const ResVector3CurveData* pCurve, f32 …
Danim_ResAnim.h803 reinterpret_cast<const ResVector3CurveData*>( ref().to##name.to_ptr() ), \
811 reinterpret_cast<const ResVector3CurveData*>( ref().to##name.to_ptr() ), \
1154 …NW_RESANM_GETCURVE_DECL( ResVector3CurveData, Translate, ResBakedTransformAnimData::FLAG_CONSTANT_…
1155 …NW_RESANM_GETCURVE_DECL( ResVector3CurveData, Scale, ResBakedTransformAnimData::FLAG_CONSTANT_SCAL…
1172 …CalcTranslateCurve(result, flags, reinterpret_cast<const ResVector3CurveData*>( ref().toTranslate.… in EvaluateTranslate()