| 515 | |
| 516 | template <class T> |
| 517 | static bool |
| 518 | greaterThan(Color3<T> &v, const Color3<T> &w) |
| 519 | { |
| 520 | bool isGreaterThan = (v.x >= w.x && v.y >= w.y && v.z >= w.z) |
| 521 | && v != w; |
| 522 | |
| 523 | return isGreaterThan; |
| 524 | } |
| 525 | |
| 526 | template <class T> |
| 527 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected