| 456 | |
| 457 | template <class T> |
| 458 | static Color4<T> |
| 459 | divT(Color4<T> &color, const T &t) |
| 460 | { |
| 461 | MATH_EXC_ON; |
| 462 | return color / t; |
| 463 | } |
| 464 | |
| 465 | template <class T> |
| 466 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected