MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / greaterThan

Function greaterThan

src/python/PyImath/PyImathColor3.cpp:517–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515
516template <class T>
517static bool
518greaterThan(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
526template <class T>
527static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected