MCPcopy Create free account
hub / github.com/carbonengine/trinity / GetValueAtAdd

Method GetValueAtAdd

trinity/TriSequencer.cpp:106–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106Vector3* TriVectorSequencer::GetValueAtAdd(
107 Vector3* in,
108 Be::Time now )
109{
110 *in = Vector3( 0.0f, 0.0f, 0.0f );
111 Vector3 temp;
112 for( int i = 0; i < mFunctions.GetSize(); i++ )
113 {
114 mFunctions[i]->GetValueAt( &temp, now );
115 *in += temp;
116 }
117 return in;
118}
119
120Vector3* TriVectorSequencer::GetValueAt(
121 Vector3* in,

Callers

nothing calls this directly

Calls 3

Vector3Class · 0.70
GetSizeMethod · 0.45
GetValueAtMethod · 0.45

Tested by

no test coverage detected