1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef _GEOM_IHealingOperations_i_HeaderFile
24 #define _GEOM_IHealingOperations_i_HeaderFile
26 #include "GEOMImpl_Gen.hxx"
28 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
34 #include "GEOMImpl_IHealingOperations.hxx"
36 class GEOM_I_EXPORT GEOM_IHealingOperations_i :
37 public virtual POA_GEOM::GEOM_IHealingOperations,
38 public virtual GEOM_IOperations_i
41 GEOM_IHealingOperations_i(PortableServer::POA_ptr thePOA,
42 GEOM::GEOM_Gen_ptr theEngine,
43 ::GEOMImpl_IHealingOperations* theImpl);
44 ~GEOM_IHealingOperations_i();
46 GEOM::GEOM_Object_ptr ProcessShape(GEOM::GEOM_Object_ptr theObject,
47 const GEOM::string_array& theOperations,
48 const GEOM::string_array& theParams,
49 const GEOM::string_array& theValues);
51 void GetShapeProcessParameters(GEOM::string_array_out theOperations,
52 GEOM::string_array_out theParams,
53 GEOM::string_array_out theValues);
55 void GetOperatorParameters (const char* theOperator,
56 GEOM::string_array_out theParams,
57 GEOM::string_array_out theValues);
59 GEOM::GEOM_Object_ptr SuppressFaces(GEOM::GEOM_Object_ptr theObject,
60 const GEOM::short_array& theFaces);
62 GEOM::GEOM_Object_ptr CloseContour (GEOM::GEOM_Object_ptr theObject,
63 const GEOM::short_array& theWires,
64 CORBA::Boolean isCommonVertex);
66 GEOM::GEOM_Object_ptr RemoveIntWires (GEOM::GEOM_Object_ptr theObject,
67 const GEOM::short_array& theWires);
69 GEOM::GEOM_Object_ptr FillHoles (GEOM::GEOM_Object_ptr theObject,
70 const GEOM::short_array& theWires);
72 GEOM::GEOM_Object_ptr Sew (const GEOM::ListOfGO & theObject,
73 CORBA::Double theTolerance);
75 GEOM::GEOM_Object_ptr SewAllowNonManifold (const GEOM::ListOfGO & theObject,
76 CORBA::Double theTolerance);
78 GEOM::GEOM_Object_ptr RemoveInternalFaces (const GEOM::ListOfGO& theSolids);
80 GEOM::GEOM_Object_ptr DivideEdge (GEOM::GEOM_Object_ptr theObject,
81 CORBA::Short theIndex,
82 CORBA::Double theValue,
83 CORBA::Boolean isByParameter);
85 GEOM::GEOM_Object_ptr DivideEdgeByPoint (GEOM::GEOM_Object_ptr theObject,
86 CORBA::Short theIndex,
87 const GEOM::ListOfGO& thePoints);
89 GEOM::GEOM_Object_ptr FuseCollinearEdgesWithinWire (GEOM::GEOM_Object_ptr theWire,
90 const GEOM::ListOfGO& theVertices);
92 CORBA::Boolean GetFreeBoundary(const GEOM::ListOfGO& theObjects,
93 GEOM::ListOfGO_out theClosedWires,
94 GEOM::ListOfGO_out theOpenWires );
96 GEOM::GEOM_Object_ptr ChangeOrientation (GEOM::GEOM_Object_ptr theObject);
97 GEOM::GEOM_Object_ptr ChangeOrientationCopy (GEOM::GEOM_Object_ptr theObject);
99 GEOM::GEOM_Object_ptr LimitTolerance (GEOM::GEOM_Object_ptr theObject,
100 CORBA::Double theTolerance);
102 ::GEOMImpl_IHealingOperations* GetOperations() { return (::GEOMImpl_IHealingOperations*)GetImpl(); }
104 GEOM::ModifStatistics* GetStatistics();
107 Handle(TColStd_HArray1OfInteger) Convert( const GEOM::short_array& );