| 61 | } |
| 62 | |
| 63 | Vector3* TriVectorSequencer::GetValueAt( |
| 64 | Vector3* in, |
| 65 | Be::Time now ) |
| 66 | { |
| 67 | if( mOperator == TRIOP_MULTIPLY ) |
| 68 | return GetValueAtMult( in, now ); |
| 69 | else if( mOperator == TRIOP_ADD ) |
| 70 | return GetValueAtAdd( in, now ); |
| 71 | else |
| 72 | return GetValueAtAverage( in, now ); |
| 73 | } |
| 74 | |
| 75 | Vector3* TriVectorSequencer::GetValueAtMult( |
| 76 | Vector3* in, |
no test coverage detected