cgma
GeomPoint Class Reference

#include <GeomPoint.hpp>

List of all members.

Public Member Functions

 GeomPoint (const double x, const double y, const double z, RefEntity *owner)
 GeomPoint (const CubitVector &pos, RefEntity *owner)
 ~GeomPoint ()
CubitVectorcoordinates ()
void owner (RefEntity *owner)
RefEntityowner ()

Private Attributes

RefEntitymyOwner
CubitVector myPosition

Detailed Description

Definition at line 14 of file GeomPoint.hpp.


Constructor & Destructor Documentation

GeomPoint::GeomPoint ( const double  x,
const double  y,
const double  z,
RefEntity owner 
) [inline]

Definition at line 37 of file GeomPoint.hpp.

{
  myOwner = owner;
  myPosition.set(x,y,z);
}
GeomPoint::GeomPoint ( const CubitVector pos,
RefEntity owner 
) [inline]

Definition at line 32 of file GeomPoint.hpp.

{
  myOwner = owner;
  myPosition.set(pos);
}
GeomPoint::~GeomPoint ( ) [inline]

Definition at line 43 of file GeomPoint.hpp.

{}

Member Function Documentation

Definition at line 45 of file GeomPoint.hpp.

{return myPosition;}
void GeomPoint::owner ( RefEntity owner) [inline]

Definition at line 47 of file GeomPoint.hpp.

RefEntity * GeomPoint::owner ( ) [inline]

Definition at line 49 of file GeomPoint.hpp.

{return myOwner;}

Member Data Documentation

Definition at line 17 of file GeomPoint.hpp.

Definition at line 18 of file GeomPoint.hpp.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines