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
6
class
Box
{
7
public
:
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
array.h
Box::m_height
double m_height
Definition
box.h:13
Box::m_origin
std::array< double, 3 > m_origin
Definition
box.h:11
Box::Box
Box(const std::array< double, 3 > &boxOrigin, double boxLength, double boxHeight, double boxDepth)
Definition
box.cpp:4
Box::m_depth
double m_depth
Definition
box.h:14
Box::m_length
double m_length
Definition
box.h:12
include
box.h
Generated by
1.13.2