MCPcopy Create free account
hub / github.com/assimp/assimp / Interpolate

Function Interpolate

code/Common/TargetAnimation.cpp:82–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80// ------------------------------------------------------------------------------------------------
81template <class T>
82inline T Interpolate(const T &one, const T &two, ai_real val) {
83 return one + (two - one) * val;
84}
85
86// ------------------------------------------------------------------------------------------------
87void KeyIterator::operator++() {

Callers 5

EvaluateMethod · 0.85
TEST_FFunction · 0.85
operator()Method · 0.85
aiQuaternionInterpolateFunction · 0.85
operator++Method · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68