Skip to content

Commit

Permalink
[skip CI] [Path] fix typo
Browse files Browse the repository at this point in the history
I just introduced
  • Loading branch information
donovaly committed Jun 19, 2022
1 parent 68a4995 commit e9bb9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Path/libarea/kurve/Finite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ namespace geoff_geometry {

bool Box3d::outside(const Box3d& b) const{
// 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;
if(this->max.x < b.min.x)
return true;
Expand Down

0 comments on commit e9bb9af

Please sign in to comment.