mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-07 15:20:35 +05:00
27 lines
631 B
C++
27 lines
631 B
C++
|
//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;
|
||
|
};
|