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

Function lessThan22

src/python/PyImath/PyImathMatrix22.cpp:447–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

445
446template <class T>
447static bool
448lessThan22(Matrix22<T> &mat1, const Matrix22<T> &mat2)
449{
450 for(int i = 0; i < 2; ++i){
451 for(int j = 0; j < 2; ++j){
452 if(mat1[i][j] > mat2[i][j]){
453 return false;
454 }
455 }
456 }
457
458 return (mat1 != mat2);
459}
460
461template <class T>
462static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected