| 367 | |
| 368 | template <class T> |
| 369 | static Color3<T> |
| 370 | div(Color3<T> &color, const Color3<T> &color2) |
| 371 | { |
| 372 | MATH_EXC_ON; |
| 373 | return color / color2; |
| 374 | } |
| 375 | |
| 376 | template <class T> |
| 377 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected