Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "GEOM_Function.hxx"
00026
00027 #define CHAM_ARG_SH 1
00028 #define CHAM_ARG_D1 2
00029 #define CHAM_ARG_D2 3
00030 #define CHAM_ARG_ANGLE 3
00031 #define CHAM_ARG_LENG 4
00032 #define CHAM_ARG_LAST 4
00033
00034 class GEOMImpl_IChamfer
00035 {
00036 public:
00037
00038 GEOMImpl_IChamfer(Handle(GEOM_Function) theFunction): _func(theFunction) {}
00039
00040 void SetShape(Handle(GEOM_Function) theRef) { _func->SetReference(CHAM_ARG_SH, theRef); }
00041
00042 Handle(GEOM_Function) GetShape() { return _func->GetReference(CHAM_ARG_SH); }
00043
00044 void SetD (double theD) { _func->SetReal(CHAM_ARG_D1, theD); }
00045 void SetD1(double theD) { _func->SetReal(CHAM_ARG_D1, theD); }
00046 void SetD2(double theD) { _func->SetReal(CHAM_ARG_D2, theD); }
00047 void SetAngle(double theAngle) { _func->SetReal(CHAM_ARG_ANGLE, theAngle); }
00048
00049 double GetD () { return _func->GetReal(CHAM_ARG_D1); }
00050 double GetD1() { return _func->GetReal(CHAM_ARG_D1); }
00051 double GetD2() { return _func->GetReal(CHAM_ARG_D2); }
00052 double GetAngle() { return _func->GetReal(CHAM_ARG_ANGLE); }
00053
00054 void SetLength(int theLen) { _func->SetInteger(CHAM_ARG_LENG, theLen); }
00055
00056 int GetLength() { return _func->GetInteger(CHAM_ARG_LENG); }
00057
00058 void SetFace(int theInd, int theFace)
00059 { _func->SetInteger(CHAM_ARG_LAST + theInd, theFace); }
00060 void SetFace1(int theFace)
00061 { _func->SetInteger(CHAM_ARG_LAST + 1, theFace); }
00062 void SetFace2(int theFace)
00063 { _func->SetInteger(CHAM_ARG_LAST + 2, theFace); }
00064 void SetEdge(int theInd, int theEdge)
00065 { _func->SetInteger(CHAM_ARG_LAST + theInd, theEdge); }
00066
00067 int GetFace(int theInd) { return _func->GetInteger(CHAM_ARG_LAST + theInd); }
00068 int GetFace1() { return _func->GetInteger(CHAM_ARG_LAST + 1); }
00069 int GetFace2() { return _func->GetInteger(CHAM_ARG_LAST + 2); }
00070 int GetEdge(int theInd) { return _func->GetInteger(CHAM_ARG_LAST + theInd); }
00071
00072 private:
00073
00074 Handle(GEOM_Function) _func;
00075 };