Home
last modified time | relevance | path

Searched refs:mInterpolationType (Results 1 – 7 of 7) sorted by relevance

/dports/games/openmw/openmw-openmw-0.47.0/components/nif/
H A Dnifkey.hpp51 unsigned int mInterpolationType = InterpolationType_Linear; member
59 mInterpolationType = InterpolationType_Unknown; in read()
78 mInterpolationType = nif->getUInt(); in read()
83 if (mInterpolationType == InterpolationType_Linear in read()
84 || mInterpolationType == InterpolationType_Constant) in read()
93 else if (mInterpolationType == InterpolationType_Quadratic) in read()
102 else if (mInterpolationType == InterpolationType_TBC) in read()
116 else if(mInterpolationType == InterpolationType_XYZ) in read()
127 else if (mInterpolationType == InterpolationType_Unknown) in read()
135 error << "Unhandled interpolation type: " << mInterpolationType; in read()
H A Ddata.cpp433 if(mRotations->mInterpolationType == InterpolationType_XYZ) in read()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADASaxFrameworkLoader/include/
H A DCOLLADASaxFWLInterpolationTypeSource.h29 COLLADAFW::AnimationCurve::InterpolationType mInterpolationType;
36 , mInterpolationType(COLLADAFW::AnimationCurve::INTERPOLATION_UNKNOWN) in InterpolationTypeSource()
42 …DAFW::AnimationCurve::InterpolationType getInterpolationType() const { return mInterpolationType; } in getInterpolationType()
44 …(COLLADAFW::AnimationCurve::InterpolationType interpolationType) { mInterpolationType = interpolat… in setInterpolationType()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAFramework/include/
H A DCOLLADAFWAnimationCurve.h62 InterpolationType mInterpolationType; variable
89 , mInterpolationType(INTERPOLATION_UNKNOWN) in AnimationCurve()
123 InterpolationType getInterpolationType() const { return mInterpolationType; } in getInterpolationType()
127 …void setInterpolationType(InterpolationType interpolationType) { mInterpolationType = interpolatio… in setInterpolationType()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/packages/spatial/sbml/
H A DSampledField.cpp74 , mInterpolationType(SPATIAL_INTERPOLATIONKIND_INVALID) in SampledField()
102 , mInterpolationType(SPATIAL_INTERPOLATIONKIND_INVALID) in SampledField()
133 , mInterpolationType(orig.mInterpolationType) in SampledField()
165 mInterpolationType = rhs.mInterpolationType; in operator =()
277 return mInterpolationType; in getInterpolationType()
287 return InterpolationKind_toString(mInterpolationType); in getInterpolationTypeAsString()
652 mInterpolationType = SPATIAL_INTERPOLATIONKIND_INVALID; in setInterpolationType()
657 mInterpolationType = interpolationType; in setInterpolationType()
959 mInterpolationType = SPATIAL_INTERPOLATIONKIND_INVALID; in unsetInterpolationType()
1825 mInterpolationType = in readAttributes()
[all …]
H A DSampledField.h150 InterpolationKind_t mInterpolationType; variable
/dports/games/openmw/openmw-openmw-0.47.0/components/nifosg/
H A Dcontroller.hpp117 … return interpolate(mLastLowKey->second, mLastHighKey->second, a, mKeys->mInterpolationType); in interpKey()