Removing complement from internal RPN.

This commit is contained in:
Patrick Shriwise 2019-07-12 15:52:37 -05:00
parent 542ce3f15e
commit e9ac007367
3 changed files with 59 additions and 17 deletions

View file

@ -202,6 +202,8 @@ public:
protected:
bool contains_simple(Position r, Direction u, int32_t on_surface) const;
bool contains_complex(Position r, Direction u, int32_t on_surface) const;
BoundingBox bounding_box_simple() const;
BoundingBox bounding_box_complex() const;
};
//==============================================================================

View file

@ -74,9 +74,6 @@ struct BoundingBox
};
//==============================================================================
//! A geometry primitive used to define regions of 3D space.
//==============================================================================