| 322 | |
| 323 | template <class T> |
| 324 | static Color3<T> |
| 325 | mulT(Color3<T> &color, const T &t) |
| 326 | { |
| 327 | MATH_EXC_ON; |
| 328 | return color * t; |
| 329 | } |
| 330 | |
| 331 | template <class T> |
| 332 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected