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

Function lessThan44

src/python/PyImath/PyImathMatrix44.cpp:819–831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

817
818template <class T>
819static bool
820lessThan44(Matrix44<T> &mat1, const Matrix44<T> &mat2)
821{
822 for(int i = 0; i < 4; ++i){
823 for(int j = 0; j < 4; ++j){
824 if(mat1[i][j] > mat2[i][j]){
825 return false;
826 }
827 }
828 }
829
830 return (mat1 != mat2);
831}
832
833template <class T>
834static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected