mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Implementing a couple more methods for CAD surfaces.
This commit is contained in:
parent
28f04592a3
commit
da2a99b475
2 changed files with 20 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue