Salome HOME
updated copyright message
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ICylinder.hxx
index 4a76fd860f79a0e90bfc630b752daa23caba7271..90d03e3b5f68b64526f50ca601759f6c8cdf4df6 100644 (file)
@@ -1,12 +1,34 @@
-//NOTE: This is an intreface to a function for the Cylinder creation.
-
-
+// Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+//NOTE: This is an interface to a function for the Cylinder creation.
+//
 #include "GEOM_Function.hxx"
 
 #define CYL_ARG_R   1
 #define CYL_ARG_H   2
 #define CYL_ARG_PNT 3
 #define CYL_ARG_VEC 4
+#define CYL_ARG_A   5
 
 class GEOMImpl_ICylinder
 {
@@ -29,6 +51,10 @@ class GEOMImpl_ICylinder
   void SetVector(Handle(GEOM_Function) theRefVector) { _func->SetReference(CYL_ARG_VEC, theRefVector); }
 
   Handle(GEOM_Function) GetVector() { return _func->GetReference(CYL_ARG_VEC); }
+  
+  void SetA(double theA) { _func->SetReal(CYL_ARG_A, theA); }
+
+  double GetA() { return _func->GetReal(CYL_ARG_A); }
 
  private: