#include <orthomesh.h>
Public Member Functions | |
| Point3D (double d1, double d2, double d3) | |
| Point3D () | |
| ~Point3D () | |
| double & | operator[] (int index) |
| double | operator[] (int index) const |
Private Attributes | |
| double | data [3] |
Definition at line 13 of file orthomesh.h.
| Point3D::Point3D | ( | double | d1, | |
| double | d2, | |||
| double | d3 | |||
| ) | [inline] |
Definition at line 18 of file orthomesh.h.
| Point3D::Point3D | ( | ) | [inline] |
Definition at line 24 of file orthomesh.h.
| Point3D::~Point3D | ( | ) | [inline] |
Definition at line 26 of file orthomesh.h.
| double Point3D::operator[] | ( | int | index | ) | const [inline] |
Definition at line 32 of file orthomesh.h.
00033 { 00034 assert(index < 3); 00035 return data[index]; 00036 }
| double& Point3D::operator[] | ( | int | index | ) | [inline] |
Definition at line 27 of file orthomesh.h.
00028 { 00029 assert(index < 3); 00030 return data[index]; 00031 }
double Point3D::data[3] [private] |
Definition at line 16 of file orthomesh.h.
1.6.3