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