geom/src/GEOMImpl/GEOMImpl_IOffset.hxx

27 lines
631 B
C++
Raw Normal View History

2004-12-01 15:39:14 +05:00
//NOTE: This is an intreface to a function for the Offset creation.
#include "GEOM_Function.hxx"
#define OFF_ARG_SHAPE 1
#define OFF_ARG_VALUE 2
class GEOMImpl_IOffset
{
public:
GEOMImpl_IOffset(Handle(GEOM_Function) theFunction): _func(theFunction) {}
void SetShape(Handle(GEOM_Function) theShape) { _func->SetReference(OFF_ARG_SHAPE, theShape); }
Handle(GEOM_Function) GetShape() { return _func->GetReference(OFF_ARG_SHAPE); }
void SetValue(double theValue) { _func->SetReal(OFF_ARG_VALUE, theValue); }
double GetValue() { return _func->GetReal(OFF_ARG_VALUE); }
private:
Handle(GEOM_Function) _func;
};