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

Function lessThan

src/python/PyImath/PyImathShear.cpp:400–408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398
399template <class T>
400static bool
401lessThan(Shear6<T> &v, const Shear6<T> &w)
402{
403 bool isLessThan = (v[0] <= w[0] && v[1] <= w[1] && v[2] <= w[2]
404 && v[3] <= w[3] && v[4] <= w[4] && v[5] <= w[5])
405 && v != w;
406
407 return isLessThan;
408}
409
410template <class T>
411static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected