| 104 | } |
| 105 | |
| 106 | Vector3* 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 | |
| 120 | Vector3* TriVectorSequencer::GetValueAt( |
| 121 | Vector3* in, |
nothing calls this directly
no test coverage detected