/src/contrib/geom-5.1.2.7/inc_pythonocc/GEOMImpl_ICurve.hxx

http://pythonocc.googlecode.com/ · C++ Header · 47 lines · 18 code · 9 blank · 20 comment · 0 complexity · 093791292e804dd6b333fe08e47e5c7f MD5 · raw file

  1. // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
  2. // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
  3. //
  4. // This library is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU Lesser General Public
  6. // License as published by the Free Software Foundation; either
  7. // version 2.1 of the License.
  8. //
  9. // This library is distributed in the hope that it will be useful
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. // Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public
  15. // License along with this library; if not, write to the Free Software
  16. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. //
  18. // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
  19. //
  20. //NOTE: This is an intreface to a function for the Circle creation.
  21. #include "SGEOM_Function.hxx"
  22. #define CURVE_ARG_EDGE 1
  23. #define CURVE_ARG_PAR 2
  24. #define CURVE_ARG_TOOL 3
  25. class GEOMImpl_ICurve
  26. {
  27. public:
  28. GEOMImpl_ICurve(Handle(GEOM_Function) theFunction): _func(theFunction) {}
  29. void SetEdge(Handle(GEOM_Function) theE) { _func->SetReference(CURVE_ARG_EDGE, theE); }
  30. void SetTool(Handle(GEOM_Function) theT) { _func->SetReference(CURVE_ARG_TOOL, theT); }
  31. void SetPar(double theP) { _func->SetReal(CURVE_ARG_PAR, theP); }
  32. void SetPar(const TCollection_AsciiString& theP) { _func->SetReal(CURVE_ARG_PAR, theP); }
  33. Handle(GEOM_Function) GetEdge() { return _func->GetReference(CURVE_ARG_EDGE); }
  34. Handle(GEOM_Function) GetTool() { return _func->GetReference(CURVE_ARG_TOOL); }
  35. double GetPar() { return _func->GetReal(CURVE_ARG_PAR); }
  36. private:
  37. Handle(GEOM_Function) _func;
  38. };