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

Function lessThanEqual22

src/python/PyImath/PyImathMatrix22.cpp:462–474  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460
461template <class T>
462static bool
463lessThanEqual22(Matrix22<T> &mat1, const Matrix22<T> &mat2)
464{
465 for(int i = 0; i < 2; ++i){
466 for(int j = 0; j < 2; ++j){
467 if(mat1[i][j] > mat2[i][j]){
468 return false;
469 }
470 }
471 }
472
473 return true;
474}
475
476template <class T>
477static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected