mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Removing necessary constructor for BoundingBox.
This commit is contained in:
parent
c9ff5f1530
commit
6d0ba53436
1 changed files with 4 additions and 4 deletions
|
|
@ -47,11 +47,11 @@ struct BoundingBox
|
|||
{
|
||||
|
||||
BoundingBox(double x_min, double x_max,
|
||||
double y_min, double y_max,
|
||||
double z_min, double z_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) {}
|
||||
ymin(y_min), ymax(y_max),
|
||||
zmin(z_min), zmax(z_max) {}
|
||||
|
||||
double xmin;
|
||||
double xmax;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue