1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "GeomAPI_Shape.h"
23 #include <BRep_Tool.hxx>
24 #include <BRepAlgoAPI_Section.hxx>
25 #include <BRepBndLib.hxx>
26 #include <BRepBuilderAPI_FindPlane.hxx>
27 #include <BRepExtrema_DistShapeShape.hxx>
28 #include <BRepTools.hxx>
29 #include <Bnd_Box.hxx>
30 #include <Geom_Circle.hxx>
31 #include <Geom_Conic.hxx>
32 #include <Geom_Curve.hxx>
33 #include <Geom_Ellipse.hxx>
34 #include <Geom_Hyperbola.hxx>
35 #include <Geom_Line.hxx>
36 #include <Geom_Parabola.hxx>
37 #include <Geom_Plane.hxx>
38 #include <Geom_RectangularTrimmedSurface.hxx>
39 #include <Geom_TrimmedCurve.hxx>
40 #include <TopExp_Explorer.hxx>
42 #include <TopoDS_Iterator.hxx>
43 #include <TopoDS_Shape.hxx>
44 #include <NCollection_List.hxx>
47 #include <algorithm> // for std::transform
49 #include <BRepTools.hxx>
51 #define MY_SHAPE implPtr<TopoDS_Shape>()
53 GeomAPI_Shape::GeomAPI_Shape()
54 : GeomAPI_Interface(new TopoDS_Shape())
58 std::shared_ptr<GeomAPI_Shape> GeomAPI_Shape::emptyCopied() const
60 GeomShapePtr aShape(new GeomAPI_Shape());
61 aShape->setImpl(new TopoDS_Shape(MY_SHAPE->EmptyCopied()));
65 bool GeomAPI_Shape::isNull() const
67 return MY_SHAPE->IsNull() == Standard_True;
70 bool GeomAPI_Shape::isEqual(const std::shared_ptr<GeomAPI_Shape> theShape) const
75 return theShape->isNull();
76 if (theShape->isNull())
79 return MY_SHAPE->IsEqual(theShape->impl<TopoDS_Shape>()) == Standard_True;
82 bool GeomAPI_Shape::isSame(const std::shared_ptr<GeomAPI_Shape> theShape) const
87 return theShape->isNull();
88 if (theShape->isNull())
91 return MY_SHAPE->IsSame(theShape->impl<TopoDS_Shape>()) == Standard_True;
94 bool GeomAPI_Shape::isVertex() const
96 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
97 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_VERTEX;
100 bool GeomAPI_Shape::isEdge() const
102 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
103 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_EDGE;
106 bool GeomAPI_Shape::isWire() const
108 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
109 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_WIRE;
112 bool GeomAPI_Shape::isFace() const
114 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
115 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_FACE;
118 bool GeomAPI_Shape::isCompound() const
120 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
121 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_COMPOUND;
124 bool GeomAPI_Shape::isCompoundOfSolids() const
126 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
127 if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND)
129 bool isAtLeastOne = false;
130 for(TopoDS_Iterator aSubs(aShape); aSubs.More(); aSubs.Next()) {
131 if (aSubs.Value().IsNull() || aSubs.Value().ShapeType() != TopAbs_SOLID)
138 GeomAPI_Shape::ShapeType GeomAPI_Shape::typeOfCompoundShapes() const
140 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
141 if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND)
144 for(TopoDS_Iterator aSubs(aShape); aSubs.More(); aSubs.Next()) {
145 if (!aSubs.Value().IsNull()) {
147 aType = aSubs.Value().ShapeType();
148 else if (aSubs.Value().ShapeType() != aType)
152 return (GeomAPI_Shape::ShapeType) aType;
155 // adds the nopt-compound elements recursively to the list
156 static void addSimpleToList(const TopoDS_Shape& theShape, NCollection_List<TopoDS_Shape>& theList)
158 if (!theShape.IsNull()) {
159 if (theShape.ShapeType() == TopAbs_COMPOUND) {
160 for(TopoDS_Iterator aSubs(theShape); aSubs.More(); aSubs.Next()) {
161 addSimpleToList(aSubs.Value(), theList);
164 theList.Append(theShape);
169 bool GeomAPI_Shape::isConnectedTopology() const
171 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
172 if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND)
174 // list of simple elements that are not detected in connection to others
175 NCollection_List<TopoDS_Shape> aNotConnected;
176 addSimpleToList(aShape, aNotConnected);
177 if (aNotConnected.IsEmpty()) // an empty compound
180 // collect here the group of connected subs, starting with one first element
181 NCollection_List<TopoDS_Shape> aNewConnected;
182 aNewConnected.Append(aNotConnected.First());
183 aNotConnected.RemoveFirst();
184 // iterate until some new element become connected
185 while(!aNewConnected.IsEmpty() && !aNotConnected.IsEmpty()) {
186 NCollection_List<TopoDS_Shape> aNew; // very new connected to new connected
187 NCollection_List<TopoDS_Shape>::Iterator aNotIter(aNotConnected);
188 while(aNotIter.More()) {
189 // optimization to avoid TopExp_Explorer double-cycle, collect all vertices in the list first
190 NCollection_List<TopoDS_Shape> aNotVertices;
191 for(TopExp_Explorer anExp1(aNotIter.Value(), TopAbs_VERTEX); anExp1.More(); anExp1.Next()) {
192 aNotVertices.Append(anExp1.Current());
195 bool aConnected = false;
196 NCollection_List<TopoDS_Shape>::Iterator aNewIter(aNewConnected);
197 for(; !aConnected && aNewIter.More(); aNewIter.Next()) {
198 // checking topological connecion of aNotIter and aNewIter
199 // (if shapes are connected, vertices are connected for sure)
200 TopExp_Explorer anExp2(aNewIter.Value(), TopAbs_VERTEX);
201 for(; !aConnected && anExp2.More(); anExp2.Next()) {
202 NCollection_List<TopoDS_Shape>::Iterator aNotIter(aNotVertices);
203 for(; aNotIter.More(); aNotIter.Next()) {
204 if (aNotIter.Value().IsSame(anExp2.Current())) {
212 aNew.Append(aNotIter.Value());
213 aNotConnected.Remove(aNotIter);
218 // remove all new connected and put to this list very new connected
219 aNewConnected.Clear();
220 aNewConnected.Append(aNew);
222 return aNotConnected.IsEmpty() == Standard_True;
225 bool GeomAPI_Shape::isSolid() const
227 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
228 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_SOLID;
231 bool GeomAPI_Shape::isCompSolid() const
233 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
234 return !aShape.IsNull() && aShape.ShapeType() == TopAbs_COMPSOLID;
237 bool GeomAPI_Shape::isPlanar() const
239 TopoDS_Shape aShape = impl<TopoDS_Shape>();
241 if(aShape.IsNull()) {
245 TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
246 if(aShapeType == TopAbs_COMPOUND) {
247 TopoDS_Iterator anIt(aShape);
249 for(; anIt.More(); anIt.Next()) {
253 anIt.Initialize(aShape);
254 aShape = anIt.Value();
258 aShapeType = aShape.ShapeType();
259 if(aShapeType == TopAbs_VERTEX) {
261 } else if(aShapeType == TopAbs_FACE) {
262 const Handle(Geom_Surface)& aSurface = BRep_Tool::Surface(TopoDS::Face(aShape));
263 Handle(Standard_Type) aType = aSurface->DynamicType();
265 if(aType == STANDARD_TYPE(Geom_RectangularTrimmedSurface)) {
266 Handle(Geom_RectangularTrimmedSurface) aTrimSurface =
267 Handle(Geom_RectangularTrimmedSurface)::DownCast(aSurface);
268 aType = aTrimSurface->BasisSurface()->DynamicType();
270 return (aType == STANDARD_TYPE(Geom_Plane)) == Standard_True;
272 BRepBuilderAPI_FindPlane aFindPlane(aShape);
273 bool isFound = aFindPlane.Found() == Standard_True;
275 if(!isFound && aShapeType == TopAbs_EDGE) {
276 Standard_Real aFirst, aLast;
277 Handle(Geom_Curve) aCurve = BRep_Tool::Curve(TopoDS::Edge(aShape), aFirst, aLast);
278 Handle(Standard_Type) aType = aCurve->DynamicType();
280 if(aType == STANDARD_TYPE(Geom_TrimmedCurve)) {
281 Handle(Geom_TrimmedCurve) aTrimCurve = Handle(Geom_TrimmedCurve)::DownCast(aCurve);
282 aType = aTrimCurve->BasisCurve()->DynamicType();
285 if(aType == STANDARD_TYPE(Geom_Line)
286 || aType == STANDARD_TYPE(Geom_Conic)
287 || aType == STANDARD_TYPE(Geom_Circle)
288 || aType == STANDARD_TYPE(Geom_Ellipse)
289 || aType == STANDARD_TYPE(Geom_Hyperbola)
290 || aType == STANDARD_TYPE(Geom_Parabola)) {
301 GeomAPI_Shape::ShapeType GeomAPI_Shape::shapeType() const
303 const TopoDS_Shape& aShape = impl<TopoDS_Shape>();
305 ShapeType aST = GeomAPI_Shape::SHAPE;
307 switch(aShape.ShapeType()) {
308 case TopAbs_COMPOUND:
309 aST = GeomAPI_Shape::COMPOUND;
311 case TopAbs_COMPSOLID:
312 aST = GeomAPI_Shape::COMPSOLID;
315 aST = GeomAPI_Shape::SOLID;
318 aST = GeomAPI_Shape::SHELL;
321 aST = GeomAPI_Shape::FACE;
324 aST = GeomAPI_Shape::WIRE;
327 aST = GeomAPI_Shape::EDGE;
330 aST = GeomAPI_Shape::VERTEX;
333 aST = GeomAPI_Shape::SHAPE;
340 GeomAPI_Shape::ShapeType GeomAPI_Shape::shapeTypeByStr(std::string theType)
342 std::transform(theType.begin(), theType.end(), theType.begin(), ::toupper);
343 if (theType == "COMPOUND")
345 if (theType == "COMPSOLID")
347 if (theType == "SOLID")
349 if (theType == "SHELL")
351 if (theType == "FACE")
353 if (theType == "WIRE")
355 if (theType == "EDGE")
357 if (theType == "VERTEX")
359 return SHAPE; // default
362 std::string GeomAPI_Shape::shapeTypeStr() const
364 ShapeType aShapeType = shapeType();
365 std::string aShapeTypeStr;
369 aShapeTypeStr = "COMPOUND";
373 aShapeTypeStr = "COMPSOLID";
377 aShapeTypeStr = "SOLID";
381 aShapeTypeStr = "SHELL";
385 aShapeTypeStr = "FACE";
389 aShapeTypeStr = "WIRE";
393 aShapeTypeStr = "EDGE";
397 aShapeTypeStr = "VERTEX";
401 aShapeTypeStr = "SHAPE";
406 return aShapeTypeStr;
409 GeomAPI_Shape::Orientation GeomAPI_Shape::orientation() const
411 TopAbs_Orientation anOrientation = MY_SHAPE->Orientation();
413 switch(anOrientation) {
414 case TopAbs_FORWARD: return FORWARD;
415 case TopAbs_REVERSED: return REVERSED;
416 case TopAbs_INTERNAL: return INTERNAL;
417 case TopAbs_EXTERNAL: return EXTERNAL;
418 default: return FORWARD;
422 void GeomAPI_Shape::setOrientation(const GeomAPI_Shape::Orientation theOrientation)
424 TopAbs_Orientation anOrientation = MY_SHAPE->Orientation();
426 switch(theOrientation) {
427 case FORWARD: MY_SHAPE->Orientation(TopAbs_FORWARD); break;
428 case REVERSED: MY_SHAPE->Orientation(TopAbs_REVERSED); break;
429 case INTERNAL: MY_SHAPE->Orientation(TopAbs_INTERNAL); break;
430 case EXTERNAL: MY_SHAPE->Orientation(TopAbs_EXTERNAL); break;
434 void GeomAPI_Shape::reverse()
439 bool GeomAPI_Shape::isSubShape(const std::shared_ptr<GeomAPI_Shape> theShape,
440 const bool theCheckOrientation) const
442 if(!theShape.get()) {
446 const TopoDS_Shape& aShapeToSearch = theShape->impl<TopoDS_Shape>();
447 if(aShapeToSearch.IsNull()) {
451 for(TopExp_Explorer anExp(*MY_SHAPE, aShapeToSearch.ShapeType()); anExp.More(); anExp.Next()) {
452 if(theCheckOrientation ?
453 aShapeToSearch.IsEqual(anExp.Current()) : aShapeToSearch.IsSame(anExp.Current())) {
461 bool GeomAPI_Shape::computeSize(double& theXmin, double& theYmin, double& theZmin,
462 double& theXmax, double& theYmax, double& theZmax) const
464 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
468 BRepBndLib::Add(aShape, aBndBox);
469 aBndBox.Get(theXmin, theYmin, theZmin, theXmax, theYmax, theZmax);
473 std::string GeomAPI_Shape::getShapeStream() const
475 std::ostringstream aStream;
476 const TopoDS_Shape& aShape = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
477 BRepTools::Write(aShape, aStream);
478 return aStream.str();
481 GeomShapePtr GeomAPI_Shape::intersect(const GeomShapePtr theShape) const
483 const TopoDS_Shape& aShape1 = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
484 const TopoDS_Shape& aShape2 = theShape->impl<TopoDS_Shape>();
486 BRepAlgoAPI_Section aCommon(aShape1, aShape2);
487 if (!aCommon.IsDone())
488 return GeomShapePtr();
490 TopoDS_Shape aResult = aCommon.Shape();
491 if (aResult.ShapeType() == TopAbs_COMPOUND) {
492 NCollection_List<TopoDS_Shape> aSubs;
493 addSimpleToList(aResult, aSubs);
494 if(aSubs.Size() == 1) {
495 aResult = aSubs.First();
496 } else if(aSubs.Size() == 0) {
497 return GeomShapePtr();
501 GeomShapePtr aResShape(new GeomAPI_Shape);
502 aResShape->setImpl(new TopoDS_Shape(aResult));
506 bool GeomAPI_Shape::isIntersect(const GeomShapePtr theShape) const
508 if(!theShape.get()) {
512 const TopoDS_Shape& aShape1 = const_cast<GeomAPI_Shape*>(this)->impl<TopoDS_Shape>();
513 const TopoDS_Shape& aShape2 = theShape->impl<TopoDS_Shape>();
515 BRepExtrema_DistShapeShape aDist(aShape1, aShape2);
517 if(aDist.IsDone() && aDist.Value() < Precision::Confusion()) {
524 void GeomAPI_Shape::translate(const std::shared_ptr<GeomAPI_Dir> theDir, const double theOffset)
526 gp_Dir aDir = theDir->impl<gp_Dir>();
527 gp_Vec aTrsfVec(aDir.XYZ() * theOffset);
528 gp_Trsf aTranslation;
529 aTranslation.SetTranslation(aTrsfVec);
530 TopoDS_Shape aResult = MY_SHAPE->Moved(aTranslation);
531 setImpl(new TopoDS_Shape(aResult));