|
DFNgen
2.0
DFN Model Generator
|
#include <structures.h>
Public Member Functions | |
| Point () | |
| Point (double _x, double _y, double _z) | |
Public Attributes | |
| double | x |
| double | y |
| double | z |
Structure for 3D points/vertices. Constructor is overloaded for either creating a poing with uninitialized variables, or variables x, y, and z during object creation.
Definition at line 111 of file structures.h.
| Point::Point | ( | ) |
Initializes x, y, and z to zero.
Definition at line 47 of file structures.cpp.
| Point::Point | ( | double | _x, |
| double | _y, | ||
| double | _z | ||
| ) |
Initializes x, y, and z with arguments passed to the constructor.
Definition at line 56 of file structures.cpp.
| double Point::x |
Definition at line 112 of file structures.h.
| double Point::y |
Definition at line 113 of file structures.h.
| double Point::z |
Definition at line 114 of file structures.h.