Particle​ Simulation Documentation
Loading...
Searching...
No Matches
box.h
Go to the documentation of this file.
1#ifndef BOX_H
2#define BOX_H
3
4#include "array.h"
5
6class Box {
7public:
8 // Constructor
9 Box(const std::array<double, 3>& boxOrigin, double boxLength, double boxHeight, double boxDepth);
10
11 std::array<double, 3> m_origin;
12 double m_length;
13 double m_height;
14 double m_depth;
15};
16
17#endif
double m_height
Definition box.h:13
std::array< double, 3 > m_origin
Definition box.h:11
Box(const std::array< double, 3 > &boxOrigin, double boxLength, double boxHeight, double boxDepth)
Definition box.cpp:4
double m_depth
Definition box.h:14
double m_length
Definition box.h:12