Implementing a couple more methods for CAD surfaces.

This commit is contained in:
shriwise 2018-08-17 14:52:25 -05:00 committed by pshriwise
parent 28f04592a3
commit da2a99b475
2 changed files with 20 additions and 4 deletions

View file

@ -45,6 +45,14 @@ extern std::map<int, int> surface_map;
struct BoundingBox
{
BoundingBox(double x_min, double x_max,
double y_min, double y_max,
double z_min, double z_max) :
xmin(x_min), xmax(x_max),
ymin(y_min), ymax(y_max),
zmin(z_min), zmax(z_max) {}
double xmin;
double xmax;
double ymin;