[skip CI] [Path] fix typo

I just introduced
This commit is contained in:
Uwe
2022-06-19 18:43:50 +02:00
parent 68a499574a
commit e9bb9afc3b

View File

@@ -593,7 +593,7 @@ namespace geoff_geometry {
bool Box3d::outside(const Box3d& b) const{ bool Box3d::outside(const Box3d& b) const{
// returns true if this box is outside b // returns true if this box is outside b
if(!b.ok ||! this->ok) // no box set if(!b.ok || !this->ok) // no box set
return false; return false;
if(this->max.x < b.min.x) if(this->max.x < b.min.x)
return true; return true;