| 448 | |
| 449 | template <class T> |
| 450 | static Color4<T> |
| 451 | div(Color4<T> &color, const Color4<T> &color2) |
| 452 | { |
| 453 | MATH_EXC_ON; |
| 454 | return color / color2; |
| 455 | } |
| 456 | |
| 457 | template <class T> |
| 458 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected