MaxDim and MinDim added to box2

This commit is contained in:
Luigi Malomo 2018-01-09 20:12:50 +01:00
parent fab7286ff2
commit a8227df267
1 changed files with 16 additions and 0 deletions

View File

@ -273,6 +273,22 @@ public:
min = c - PointType(radius, radius); min = c - PointType(radius, radius);
} }
inline unsigned char MaxDim() const {
int i=1;
PointType diag = max-min;
if (diag[0] > diag[1])
i=0;
return i;
}
inline unsigned char MinDim() const {
int i=1;
PointType diag = max-min;
if (diag[0] < diag[1])
i=0;
return i;
}
}; // end class definition }; // end class definition
template <class ScalarType> template <class ScalarType>