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

Function lessThan

src/python/PyImath/PyImathColor4.cpp:505–512  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

503
504template <class T>
505static bool
506lessThan(Color4<T> &v, const Color4<T> &w)
507{
508 bool isLessThan = (v.r <= w.r && v.g <= w.g && v.b <= w.b && v.a <= w.a)
509 && v != w;
510
511 return isLessThan;
512}
513
514template <class T>
515static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected