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

Function lessThanEqual33

src/python/PyImath/PyImathMatrix33.cpp:733–745  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

731
732template <class T>
733static bool
734lessThanEqual33(Matrix33<T> &mat1, const Matrix33<T> &mat2)
735{
736 for(int i = 0; i < 3; ++i){
737 for(int j = 0; j < 3; ++j){
738 if(mat1[i][j] > mat2[i][j]){
739 return false;
740 }
741 }
742 }
743
744 return true;
745}
746
747template <class T>
748static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected