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_IBlocksOperations_i_HeaderFile
24 #define _GEOM_IBlocksOperations_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_IBlocksOperations.hxx"
36 class GEOM_I_EXPORT GEOM_IBlocksOperations_i :
37 public virtual POA_GEOM::GEOM_IBlocksOperations,
38 public virtual GEOM_IOperations_i
41 GEOM_IBlocksOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
42 ::GEOMImpl_IBlocksOperations* theImpl);
43 ~GEOM_IBlocksOperations_i();
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);
51 GEOM::GEOM_Object_ptr MakeQuad2Edges (GEOM::GEOM_Object_ptr theEdge1,
52 GEOM::GEOM_Object_ptr theEdge2);
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);
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);
66 GEOM::GEOM_Object_ptr MakeHexa2Faces (GEOM::GEOM_Object_ptr theFace1,
67 GEOM::GEOM_Object_ptr theFace2);
69 GEOM::GEOM_Object_ptr MakeBlockCompound (GEOM::GEOM_Object_ptr theCompound);
71 // Extract elements of blocks and blocks compounds
72 GEOM::GEOM_Object_ptr GetPoint (GEOM::GEOM_Object_ptr theShape,
76 CORBA::Double theEpsilon);
78 GEOM::GEOM_Object_ptr GetVertexNearPoint (GEOM::GEOM_Object_ptr theShape,
79 GEOM::GEOM_Object_ptr thePoint);
81 GEOM::GEOM_Object_ptr GetEdge (GEOM::GEOM_Object_ptr theShape,
82 GEOM::GEOM_Object_ptr thePoint1,
83 GEOM::GEOM_Object_ptr thePoint2);
85 GEOM::GEOM_Object_ptr GetEdgeNearPoint (GEOM::GEOM_Object_ptr theShape,
86 GEOM::GEOM_Object_ptr thePoint);
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);
94 GEOM::GEOM_Object_ptr GetFaceByEdges (GEOM::GEOM_Object_ptr theShape,
95 GEOM::GEOM_Object_ptr theEdge1,
96 GEOM::GEOM_Object_ptr theEdge2);
98 GEOM::GEOM_Object_ptr GetOppositeFace (GEOM::GEOM_Object_ptr theBlock,
99 GEOM::GEOM_Object_ptr theFace);
101 GEOM::GEOM_Object_ptr GetFaceNearPoint (GEOM::GEOM_Object_ptr theShape,
102 GEOM::GEOM_Object_ptr thePoint);
104 GEOM::GEOM_Object_ptr GetFaceByNormale (GEOM::GEOM_Object_ptr theBlock,
105 GEOM::GEOM_Object_ptr theVector);
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);
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);
118 CORBA::Boolean CheckCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
119 const CORBA::Double theToleranceC1,
120 GEOM::GEOM_IBlocksOperations::BCErrors_out theErrors);
122 char* PrintBCErrors (GEOM::GEOM_Object_ptr theCompound,
123 const GEOM::GEOM_IBlocksOperations::BCErrors& theErrors);
125 GEOM::GEOM_Object_ptr GetNonBlocks (GEOM::GEOM_Object_ptr theShape,
126 const CORBA::Double theToleranceC1,
127 GEOM::GEOM_Object_out theNonQuads);
129 GEOM::GEOM_Object_ptr RemoveExtraEdges (GEOM::GEOM_Object_ptr theShape,
130 CORBA::Long theOptimumNbFaces);
132 GEOM::GEOM_Object_ptr UnionFaces (GEOM::GEOM_Object_ptr theShape);
134 GEOM::GEOM_Object_ptr CheckAndImprove (GEOM::GEOM_Object_ptr theCompound);
136 // Extract blocks from blocks compounds
137 GEOM::ListOfGO* ExplodeCompoundOfBlocks (GEOM::GEOM_Object_ptr theCompound,
138 CORBA::Long theMinNbFaces,
139 CORBA::Long theMaxNbFaces);
141 GEOM::GEOM_Object_ptr GetBlockNearPoint (GEOM::GEOM_Object_ptr theCompound,
142 GEOM::GEOM_Object_ptr thePoint);
144 GEOM::GEOM_Object_ptr GetBlockByParts (GEOM::GEOM_Object_ptr theCompound,
145 const GEOM::ListOfGO& theParts);
147 GEOM::ListOfGO* GetBlocksByParts (GEOM::GEOM_Object_ptr theCompound,
148 const GEOM::ListOfGO& theParts);
150 // Operations on blocks with gluing of result
151 GEOM::GEOM_Object_ptr MakeMultiTransformation1D (GEOM::GEOM_Object_ptr theBlock,
152 CORBA::Long theDirFace1,
153 CORBA::Long theDirFace2,
154 CORBA::Long theNbTimes);
156 GEOM::GEOM_Object_ptr MakeMultiTransformation2D (GEOM::GEOM_Object_ptr theBlock,
157 CORBA::Long theDirFace1U,
158 CORBA::Long theDirFace2U,
159 CORBA::Long theNbTimesU,
160 CORBA::Long theDirFace1V,
161 CORBA::Long theDirFace2V,
162 CORBA::Long theNbTimesV);
164 // Build groups for Propagation of 1D hypotheses
165 GEOM::ListOfGO* Propagate (GEOM::GEOM_Object_ptr theShape);
167 ::GEOMImpl_IBlocksOperations* GetOperations()
168 { return (::GEOMImpl_IBlocksOperations*)GetImpl(); }