| 73 | } |
| 74 | |
| 75 | Vector3* TriVectorSequencer::GetValueAtMult( |
| 76 | Vector3* in, |
| 77 | Be::Time now ) |
| 78 | { |
| 79 | *in = Vector3( 1.0f, 1.0f, 1.0f ); |
| 80 | Vector3 temp; |
| 81 | for( int i = 0; i < mFunctions.GetSize(); i++ ) |
| 82 | { |
| 83 | mFunctions[i]->GetValueAt( &temp, now ); |
| 84 | in->x *= temp.x; |
| 85 | in->y *= temp.y; |
| 86 | in->z *= temp.z; |
| 87 | } |
| 88 | return in; |
| 89 | } |
| 90 | |
| 91 | Vector3* TriVectorSequencer::GetValueAtAverage( |
| 92 | Vector3* in, |
nothing calls this directly
no test coverage detected