| 330 | |
| 331 | template <class T> |
| 332 | static Color3<T> |
| 333 | rmulT(Color3<T> &color, const T &t) |
| 334 | { |
| 335 | MATH_EXC_ON; |
| 336 | return t * color; |
| 337 | } |
| 338 | |
| 339 | template <class T> |
| 340 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected