| 402 | |
| 403 | template <class T> |
| 404 | static Color4<T> |
| 405 | mulT(Color4<T> &color, const T &t) |
| 406 | { |
| 407 | MATH_EXC_ON; |
| 408 | return color * t; |
| 409 | } |
| 410 | |
| 411 | template <class T> |
| 412 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected