Removing unused bounding box method.

This commit is contained in:
Patrick Shriwise 2019-09-11 11:00:08 -05:00
parent c7471af7bf
commit 3dfc2da2a5

View file

@ -83,13 +83,6 @@ struct BoundingBox
return *this;
}
inline bool is_valid() {
return xmin <= xmax &&
ymin <= ymax &&
zmin <= zmax;
}
};
//==============================================================================