|
MOAB: Mesh Oriented datABase
(version 5.4.1)
|
struct for storing a graphics pt More...
#include <DualTool.hpp>
Public Member Functions | |
| GraphicsPoint () | |
| GraphicsPoint (float xi, float yi, float zi, int idi) | |
| GraphicsPoint (float xyzi[3], int idi) | |
| GraphicsPoint (double xyzi[3], int idi) | |
| GraphicsPoint (const GraphicsPoint &gp) | |
| GraphicsPoint & | operator= (GraphicsPoint const &gp) |
Public Attributes | |
| float | xyz [3] |
| int | id |
struct for storing a graphics pt
Definition at line 55 of file DualTool.hpp.
| moab::DualTool::GraphicsPoint::GraphicsPoint | ( | ) | [inline] |
| moab::DualTool::GraphicsPoint::GraphicsPoint | ( | float | xi, |
| float | yi, | ||
| float | zi, | ||
| int | idi | ||
| ) | [inline] |
| moab::DualTool::GraphicsPoint::GraphicsPoint | ( | float | xyzi[3], |
| int | idi | ||
| ) | [inline] |
| moab::DualTool::GraphicsPoint::GraphicsPoint | ( | double | xyzi[3], |
| int | idi | ||
| ) | [inline] |
| moab::DualTool::GraphicsPoint::GraphicsPoint | ( | const GraphicsPoint & | gp | ) | [inline] |
| GraphicsPoint& moab::DualTool::GraphicsPoint::operator= | ( | GraphicsPoint const & | gp | ) | [inline] |
Definition at line 98 of file DualTool.hpp.
{
for( unsigned i = 0; i < 3; ++i )
xyz[i] = gp.xyz[i];
id = gp.id;
return *this;
}
Definition at line 107 of file DualTool.hpp.
Referenced by GraphicsPoint(), and operator=().
| float moab::DualTool::GraphicsPoint::xyz[3] |
Definition at line 106 of file DualTool.hpp.
Referenced by GraphicsPoint(), and operator=().