| 409 | |
| 410 | template <class T> |
| 411 | static Color3<T> |
| 412 | divTR(Color3<T> &color, T a) |
| 413 | { |
| 414 | MATH_EXC_ON; |
| 415 | return Color3<T>(a / color.x, |
| 416 | a / color.y, |
| 417 | a / color.z); |
| 418 | } |
| 419 | |
| 420 | template <class T> |
| 421 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected