--------------------------------------------------------------------------------
| 244 | |
| 245 | // -------------------------------------------------------------------------------- |
| 246 | Color* Tr2CurveVector3Expression::Update( Color* in, Be::Time time ) |
| 247 | { |
| 248 | m_currentValue = GetValue( TimeAsDouble( time ) ); |
| 249 | in->r = m_currentValue.x; |
| 250 | in->g = m_currentValue.y; |
| 251 | in->b = m_currentValue.z; |
| 252 | in->a = 0; |
| 253 | return in; |
| 254 | } |
| 255 | |
| 256 | // -------------------------------------------------------------------------------- |
| 257 | Color* Tr2CurveVector3Expression::Update( Color* in, double time ) |
nothing calls this directly
no test coverage detected