geom/src/GEOMImpl/GEOMImpl_IMarker.hxx
2004-12-01 10:39:14 +00:00

70 lines
1.6 KiB
C++

//NOTE: This is an interface to a function for the local coordinate system creation.
#include "GEOM_Function.hxx"
#define CS_ARG_O_X 1
#define CS_ARG_O_Y 2
#define CS_ARG_O_Z 3
#define CS_ARG_X_DX 4
#define CS_ARG_X_DY 5
#define CS_ARG_X_DZ 6
#define CS_ARG_Y_DX 7
#define CS_ARG_Y_DY 8
#define CS_ARG_Y_DZ 9
class GEOMImpl_IMarker
{
public:
GEOMImpl_IMarker(Handle(GEOM_Function) theFunction): _func(theFunction) {}
void SetOrigin (const double theX, const double theY, const double theZ)
{
_func->SetReal(CS_ARG_O_X, theX);
_func->SetReal(CS_ARG_O_Y, theY);
_func->SetReal(CS_ARG_O_Z, theZ);
}
void SetXDir (const double theDX, const double theDY, const double theDZ)
{
_func->SetReal(CS_ARG_X_DX, theDX);
_func->SetReal(CS_ARG_X_DY, theDY);
_func->SetReal(CS_ARG_X_DZ, theDZ);
}
void SetYDir (const double theDX, const double theDY, const double theDZ)
{
_func->SetReal(CS_ARG_Y_DX, theDX);
_func->SetReal(CS_ARG_Y_DY, theDY);
_func->SetReal(CS_ARG_Y_DZ, theDZ);
}
void GetOrigin (double& theX, double& theY, double& theZ)
{
theX = _func->GetReal(CS_ARG_O_X);
theY = _func->GetReal(CS_ARG_O_Y);
theZ = _func->GetReal(CS_ARG_O_Z);
}
void GetXDir (double& theDX, double& theDY, double& theDZ)
{
theDX = _func->GetReal(CS_ARG_X_DX);
theDY = _func->GetReal(CS_ARG_X_DY);
theDZ = _func->GetReal(CS_ARG_X_DZ);
}
void GetYDir (double& theDX, double& theDY, double& theDZ)
{
theDX = _func->GetReal(CS_ARG_Y_DX);
theDY = _func->GetReal(CS_ARG_Y_DY);
theDZ = _func->GetReal(CS_ARG_Y_DZ);
}
private:
Handle(GEOM_Function) _func;
};