1 // Copyright (C) 2007-2010 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.
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
22 #ifndef _GEOMImpl_IBlocksOperations_HXX_
23 #define _GEOMImpl_IBlocksOperations_HXX_
25 #include "GEOM_IOperations.hxx"
27 #include <TopTools_ListOfShape.hxx>
28 #include <TColStd_HSequenceOfTransient.hxx>
33 class Handle(GEOM_Object);
34 class Handle(TColStd_HArray1OfInteger);
36 class GEOMImpl_IBlocksOperations : public GEOM_IOperations {
38 Standard_EXPORT GEOMImpl_IBlocksOperations(GEOM_Engine* theEngine, int theDocID);
39 Standard_EXPORT ~GEOMImpl_IBlocksOperations();
41 // Creation of blocks and block faces
42 Standard_EXPORT Handle(GEOM_Object) MakeQuad (Handle(GEOM_Object) theEdge1,
43 Handle(GEOM_Object) theEdge2,
44 Handle(GEOM_Object) theEdge3,
45 Handle(GEOM_Object) theEdge4);
47 Standard_EXPORT Handle(GEOM_Object) MakeQuad2Edges (Handle(GEOM_Object) theEdge1,
48 Handle(GEOM_Object) theEdge2);
50 Standard_EXPORT Handle(GEOM_Object) MakeQuad4Vertices (Handle(GEOM_Object) thePoint1,
51 Handle(GEOM_Object) thePoint2,
52 Handle(GEOM_Object) thePoint3,
53 Handle(GEOM_Object) thePoint4);
55 Standard_EXPORT Handle(GEOM_Object) MakeHexa (Handle(GEOM_Object) theFace1,
56 Handle(GEOM_Object) theFace2,
57 Handle(GEOM_Object) theFace3,
58 Handle(GEOM_Object) theFace4,
59 Handle(GEOM_Object) theFace5,
60 Handle(GEOM_Object) theFace6);
62 Standard_EXPORT Handle(GEOM_Object) MakeHexa2Faces (Handle(GEOM_Object) theFace1,
63 Handle(GEOM_Object) theFace2);
65 Standard_EXPORT Handle(GEOM_Object) MakeBlockCompound (Handle(GEOM_Object) theCompound);
67 // Extract elements of blocks and blocks compounds
68 Standard_EXPORT Handle(GEOM_Object) GetPoint (Handle(GEOM_Object) theShape,
69 const Standard_Real theX,
70 const Standard_Real theY,
71 const Standard_Real theZ,
72 const Standard_Real theEpsilon);
74 Standard_EXPORT Handle(GEOM_Object) GetVertexNearPoint (Handle(GEOM_Object) theShape,
75 Handle(GEOM_Object) thePoint);
77 Standard_EXPORT Handle(GEOM_Object) GetEdge (Handle(GEOM_Object) theShape,
78 Handle(GEOM_Object) thePoint1,
79 Handle(GEOM_Object) thePoint2);
81 Standard_EXPORT Handle(GEOM_Object) GetEdgeNearPoint (Handle(GEOM_Object) theBlock,
82 Handle(GEOM_Object) thePoint);
84 Standard_EXPORT Handle(GEOM_Object) GetFaceByPoints (Handle(GEOM_Object) theShape,
85 Handle(GEOM_Object) thePoint1,
86 Handle(GEOM_Object) thePoint2,
87 Handle(GEOM_Object) thePoint3,
88 Handle(GEOM_Object) thePoint4);
90 Standard_EXPORT Handle(GEOM_Object) GetFaceByEdges (Handle(GEOM_Object) theShape,
91 Handle(GEOM_Object) theEdge1,
92 Handle(GEOM_Object) theEdge2);
94 Standard_EXPORT Handle(GEOM_Object) GetOppositeFace (Handle(GEOM_Object) theBlock,
95 Handle(GEOM_Object) theFace);
97 Standard_EXPORT Handle(GEOM_Object) GetFaceNearPoint (Handle(GEOM_Object) theBlock,
98 Handle(GEOM_Object) thePoint);
100 Standard_EXPORT Handle(GEOM_Object) GetFaceByNormale (Handle(GEOM_Object) theBlock,
101 Handle(GEOM_Object) theVector);
103 Standard_EXPORT Handle(GEOM_Object) GetShapesNearPoint (Handle(GEOM_Object) theShape,
104 Handle(GEOM_Object) thePoint,
105 const Standard_Integer theShapeType,
106 const Standard_Real theTolerance);
108 // Check blocks compounds
109 Standard_EXPORT Standard_Boolean IsCompoundOfBlocks (Handle(GEOM_Object) theCompound,
110 const Standard_Integer theMinNbFaces,
111 const Standard_Integer theMaxNbFaces,
112 Standard_Integer& theNbBlocks);
124 std::list<int> incriminated;
127 Standard_EXPORT Standard_Boolean CheckCompoundOfBlocksOld (Handle(GEOM_Object) theCompound,
128 std::list<BCError>& theErrors);
130 Standard_EXPORT Standard_Boolean CheckCompoundOfBlocks (Handle(GEOM_Object) theCompound,
131 std::list<BCError>& theErrors);
133 Standard_EXPORT TCollection_AsciiString PrintBCErrors (Handle(GEOM_Object) theCompound,
134 const std::list<BCError>& theErrors);
136 Standard_EXPORT Handle(GEOM_Object) RemoveExtraEdges (Handle(GEOM_Object) theShape,
137 const Standard_Integer theOptimumNbFaces = 6);
139 Standard_EXPORT Handle(GEOM_Object) CheckAndImprove (Handle(GEOM_Object) theCompound);
141 Standard_EXPORT static void AddBlocksFrom (const TopoDS_Shape& theShape,
142 TopTools_ListOfShape& BLO,
143 TopTools_ListOfShape& NOT,
144 TopTools_ListOfShape& EXT);
146 // Extract blocks from blocks compounds
147 Standard_EXPORT Handle(TColStd_HSequenceOfTransient) ExplodeCompoundOfBlocks
148 (Handle(GEOM_Object) theCompound,
149 const Standard_Integer theMinNbFaces,
150 const Standard_Integer theMaxNbFaces);
152 Standard_EXPORT Handle(GEOM_Object) GetBlockNearPoint (Handle(GEOM_Object) theCompound,
153 Handle(GEOM_Object) thePoint);
155 Standard_EXPORT Handle(GEOM_Object) GetBlockByParts
156 (Handle(GEOM_Object) theCompound,
157 const Handle(TColStd_HSequenceOfTransient)& theParts);
159 Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetBlocksByParts
160 (Handle(GEOM_Object) theCompound,
161 const Handle(TColStd_HSequenceOfTransient)& theParts);
163 // Operations on blocks with gluing of result
164 Standard_EXPORT Handle(GEOM_Object) MakeMultiTransformation1D (Handle(GEOM_Object) theBlock,
165 const Standard_Integer theDirFace1,
166 const Standard_Integer theDirFace2,
167 const Standard_Integer theNbTimes);
169 Standard_EXPORT Handle(GEOM_Object) MakeMultiTransformation2D (Handle(GEOM_Object) theBlock,
170 const Standard_Integer theDirFace1U,
171 const Standard_Integer theDirFace2U,
172 const Standard_Integer theNbTimesU,
173 const Standard_Integer theDirFace1V,
174 const Standard_Integer theDirFace2V,
175 const Standard_Integer theNbTimesV);
177 // Build groups for Propagation of 1D hypotheses
178 Standard_EXPORT Handle(TColStd_HSequenceOfTransient) Propagate (Handle(GEOM_Object) theShape);