| 314 | |
| 315 | template <class T> |
| 316 | static Color3<T> |
| 317 | mul(Color3<T> &color, const Color3<T> &color2) |
| 318 | { |
| 319 | MATH_EXC_ON; |
| 320 | return color * color2; |
| 321 | } |
| 322 | |
| 323 | template <class T> |
| 324 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected