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

Function lessThan33

src/python/PyImath/PyImathMatrix33.cpp:718–730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

716
717template <class T>
718static bool
719lessThan33(Matrix33<T> &mat1, const Matrix33<T> &mat2)
720{
721 for(int i = 0; i < 3; ++i){
722 for(int j = 0; j < 3; ++j){
723 if(mat1[i][j] > mat2[i][j]){
724 return false;
725 }
726 }
727 }
728
729 return (mat1 != mat2);
730}
731
732template <class T>
733static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected