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

Function lessThan

src/python/PyImath/PyImathColor3.cpp:507–514  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

505
506template <class T>
507static bool
508lessThan(Color3<T> &v, const Color3<T> &w)
509{
510 bool isLessThan = (v.x <= w.x && v.y <= w.y && v.z <= w.z)
511 && v != w;
512
513 return isLessThan;
514}
515
516template <class T>
517static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected