| 410 | |
| 411 | template <class T> |
| 412 | static Color4<T> |
| 413 | rmulT(Color4<T> &color, const T &t) |
| 414 | { |
| 415 | MATH_EXC_ON; |
| 416 | return t * color; |
| 417 | } |
| 418 | |
| 419 | template <class T> |
| 420 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected