| 375 | |
| 376 | template <class T> |
| 377 | static Color3<T> |
| 378 | divT(Color3<T> &color, const T &t) |
| 379 | { |
| 380 | MATH_EXC_ON; |
| 381 | return color / t; |
| 382 | } |
| 383 | |
| 384 | template <class T> |
| 385 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected