Salome HOME
Additional fix for the issue "16219: EDF PAL 469: "RemoveFromStudy" Function": dump...
[modules/geom.git] / src / GEOM_I / GEOM_IBlocksOperations_i.hh
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _GEOM_IBlocksOperations_i_HeaderFile
24 #define _GEOM_IBlocksOperations_i_HeaderFile
25
26 #include "GEOMImpl_Gen.hxx"
27
28 #include <SALOMEconfig.h>
29
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
33
34 #include "GEOMImpl_IBlocksOperations.hxx"
35
36 class GEOM_I_EXPORT GEOM_IBlocksOperations_i :
37     public virtual POA_GEOM::GEOM_IBlocksOperations,
38     public virtual GEOM_IOperations_i
39 {
40  public:
41   GEOM_IBlocksOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
42                             ::GEOMImpl_IBlocksOperations* theImpl);
43   ~GEOM_IBlocksOperations_i();
44
45   // Creation of blocks and block faces
46   GEOM::GEOM_Object_ptr MakeQuad (GEOM::GEOM_Object_ptr theEdge1,
47                                   GEOM::GEOM_Object_ptr theEdge2,
48                                   GEOM::GEOM_Object_ptr theEdge3,
49                                   GEOM::GEOM_Object_ptr theEdge4);
50
51   GEOM::GEOM_Object_ptr MakeQuad2Edges (GEOM::GEOM_Object_ptr theEdge1,
52                                         GEOM::GEOM_Object_ptr theEdge2);
53
54   GEOM::GEOM_Object_ptr MakeQuad4Vertices (GEOM::GEOM_Object_ptr thePnt1,
55                                            GEOM::GEOM_Object_ptr thePnt2,
56                                            GEOM::GEOM_Object_ptr thePnt3,
57                                            GEOM::GEOM_Object_ptr thePnt4);
58
59   GEOM::GEOM_Object_ptr MakeHexa (GEOM::GEOM_Object_ptr theFace1,
60                                   GEOM::GEOM_Object_ptr theFace2,
61                                   GEOM::GEOM_Object_ptr theFace3,
62                                   GEOM::GEOM_Object_ptr theFace4,
63                                   GEOM::GEOM_Object_ptr theFace5,
64                                   GEOM::GEOM_Object_ptr theFace6);
65
66   GEOM::GEOM_Object_ptr MakeHexa2Faces (GEOM::GEOM_Object_ptr theFace1,
67                                         GEOM::GEOM_Object_ptr theFace2);
68
69   GEOM::GEOM_Object_ptr MakeBlockCompound (GEOM::GEOM_Object_ptr theCompound);
70
71   // Extract elements of blocks and blocks compounds
72   GEOM::GEOM_Object_ptr GetPoint (GEOM::GEOM_Object_ptr theShape,
73                                   CORBA::Double   theX,
74                                   CORBA::Double   theY,
75                                   CORBA::Double   theZ,
76                                   CORBA::Double   theEpsilon);
77
78   GEOM::GEOM_Object_ptr GetVertexNearPoint (GEOM::GEOM_Object_ptr theShape,
79                                             GEOM::GEOM_Object_ptr thePoint);
80
81   GEOM::GEOM_Object_ptr GetEdge (GEOM::GEOM_Object_ptr theShape,
82                                  GEOM::GEOM_Object_ptr thePoint1,
83                                  GEOM::GEOM_Object_ptr thePoint2);
84
85   GEOM::GEOM_Object_ptr GetEdgeNearPoint (GEOM::GEOM_Object_ptr theShape,
86                                           GEOM::GEOM_Object_ptr thePoint);
87
88   GEOM::GEOM_Object_ptr GetFaceByPoints (GEOM::GEOM_Object_ptr theShape,
89                                          GEOM::GEOM_Object_ptr thePoint1,
90                                          GEOM::GEOM_Object_ptr thePoint2,
91                                          GEOM::GEOM_Object_ptr thePoint3,
92                                          GEOM::GEOM_Object_ptr thePoint4);
93
94   GEOM::GEOM_Object_ptr GetFaceByEdges (GEOM::GEOM_Object_ptr theShape,
95                                         GEOM::GEOM_Object_ptr theEdge1,
96                                         GEOM::GEOM_Object_ptr theEdge2);
97
98   GEOM::GEOM_Object_ptr GetOppositeFace (GEOM::GEOM_Object_ptr theBlock,
99                                          GEOM::GEOM_Object_ptr theFace);
100
101   GEOM::GEOM_Object_ptr GetFaceNearPoint (GEOM::GEOM_Object_ptr theShape,
102                                           GEOM::GEOM_Object_ptr thePoint);
103
104   GEOM::GEOM_Object_ptr GetFaceByNormale (GEOM::GEOM_Object_ptr theBlock,
105                                           GEOM::GEOM_Object_ptr theVector);
106
107   GEOM::GEOM_Object_ptr GetShapesNearPoint (GEOM::GEOM_Object_ptr theShape,
108                                             GEOM::GEOM_Object_ptr thePoint,
109                                             CORBA::Long           theShapeType,
110                                             CORBA::Double         theTolerance);
111
112   // Check blocks compound
113   CORBA::Boolean IsCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
114                                      CORBA::Long           theMinNbFaces,
115                                      CORBA::Long           theMaxNbFaces,
116                                      CORBA::Long&          theNbBlocks);
117
118   CORBA::Boolean CheckCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
119                                         GEOM::GEOM_IBlocksOperations::BCErrors_out theErrors);
120
121   char* PrintBCErrors (GEOM::GEOM_Object_ptr theCompound,
122                        const GEOM::GEOM_IBlocksOperations::BCErrors& theErrors);
123
124   GEOM::GEOM_Object_ptr RemoveExtraEdges (GEOM::GEOM_Object_ptr theShape,
125                                           CORBA::Long           theOptimumNbFaces);
126
127   GEOM::GEOM_Object_ptr CheckAndImprove (GEOM::GEOM_Object_ptr theCompound);
128
129   // Extract blocks from blocks compounds
130   GEOM::ListOfGO* ExplodeCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
131                                            CORBA::Long     theMinNbFaces,
132                                            CORBA::Long     theMaxNbFaces);
133
134   GEOM::GEOM_Object_ptr GetBlockNearPoint (GEOM::GEOM_Object_ptr theCompound,
135                                            GEOM::GEOM_Object_ptr thePoint);
136
137   GEOM::GEOM_Object_ptr GetBlockByParts (GEOM::GEOM_Object_ptr theCompound,
138                                          const GEOM::ListOfGO& theParts);
139
140   GEOM::ListOfGO* GetBlocksByParts (GEOM::GEOM_Object_ptr theCompound,
141                                     const GEOM::ListOfGO& theParts);
142
143   // Operations on blocks with gluing of result
144   GEOM::GEOM_Object_ptr MakeMultiTransformation1D (GEOM::GEOM_Object_ptr theBlock,
145                                                    CORBA::Long     theDirFace1,
146                                                    CORBA::Long     theDirFace2,
147                                                    CORBA::Long     theNbTimes);
148
149   GEOM::GEOM_Object_ptr MakeMultiTransformation2D (GEOM::GEOM_Object_ptr theBlock,
150                                                    CORBA::Long     theDirFace1U,
151                                                    CORBA::Long     theDirFace2U,
152                                                    CORBA::Long     theNbTimesU,
153                                                    CORBA::Long     theDirFace1V,
154                                                    CORBA::Long     theDirFace2V,
155                                                    CORBA::Long     theNbTimesV);
156
157   // Build groups for Propagation of 1D hypotheses
158   GEOM::ListOfGO* Propagate (GEOM::GEOM_Object_ptr theShape);
159
160   ::GEOMImpl_IBlocksOperations* GetOperations()
161   { return (::GEOMImpl_IBlocksOperations*)GetImpl(); }
162 };
163
164 #endif