1 // Copyright (C) 2014-2019 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 email : webmaster.salome@opencascade.com
20 #include "GeomAPI_Wire.h"
21 #include "GeomAPI_Pnt.h"
23 #include <BRep_Builder.hxx>
24 #include <BRepTools_WireExplorer.hxx>
25 #include <Geom_Line.hxx>
26 #include <Geom_TrimmedCurve.hxx>
27 #include <Precision.hxx>
28 #include <Standard_Type.hxx>
30 #include <TopoDS_Wire.hxx>
32 //==================================================================================================
33 GeomAPI_Wire::GeomAPI_Wire()
35 TopoDS_Wire* aWire = new TopoDS_Wire();
37 BRep_Builder aBuilder;
38 aBuilder.MakeWire(*aWire);
43 //==================================================================================================
44 GeomAPI_Wire::GeomAPI_Wire(const std::shared_ptr<GeomAPI_Shape>& theShape)
46 if (!theShape->isNull() && theShape->isWire()) {
47 setImpl(new TopoDS_Shape(theShape->impl<TopoDS_Shape>()));
51 //==================================================================================================
52 bool GeomAPI_Wire::isClosed() const
54 return BRep_Tool::IsClosed(impl<TopoDS_Shape>());
57 //==================================================================================================
58 bool GeomAPI_Wire::isPolygon(std::list<GeomPointPtr>& thePoints) const
60 const TopoDS_Wire& aWire = TopoDS::Wire(impl<TopoDS_Shape>());
62 bool isPolygon = true;
63 const Handle(Standard_Type)& aLineType = STANDARD_TYPE(Geom_Line);
64 for (BRepTools_WireExplorer anExp(aWire); anExp.More() && isPolygon; anExp.Next()) {
65 const TopoDS_Edge& anEdge = anExp.Current();
67 Handle(Geom_Curve) aC3D = BRep_Tool::Curve(anEdge, aT1, aT2);
68 if (!aC3D.IsNull() && aC3D->IsKind(aLineType)) {
69 gp_Pnt aCorner = BRep_Tool::Pnt(anExp.CurrentVertex());
70 thePoints.push_back(GeomPointPtr(new GeomAPI_Pnt(aCorner.X(), aCorner.Y(), aCorner.Z())));
81 //==================================================================================================
82 bool GeomAPI_Wire::isRectangle(std::list<GeomPointPtr>& thePoints) const
86 const TopoDS_Wire& aWire = TopoDS::Wire(impl<TopoDS_Shape>());
87 const Handle(Standard_Type)& aLineType = STANDARD_TYPE(Geom_Line);
88 const Handle(Standard_Type)& aTrimmedCurveType = STANDARD_TYPE(Geom_TrimmedCurve);
90 gp_XYZ aPrevDir(0, 0, 0);
92 for (BRepTools_WireExplorer anExp(aWire); anExp.More(); anExp.Next()) {
93 const TopoDS_Edge& anEdge = anExp.Current();
95 Handle(Geom_Curve) aC3D = BRep_Tool::Curve(anEdge, aT1, aT2);
96 while (aC3D->IsKind(aTrimmedCurveType))
97 aC3D = Handle(Geom_TrimmedCurve)::DownCast(aC3D)->BasisCurve();
98 if (!aC3D.IsNull() && aC3D->IsKind(aLineType)) {
99 gp_Pnt aCorner = BRep_Tool::Pnt(anExp.CurrentVertex());
100 thePoints.push_back(GeomPointPtr(new GeomAPI_Pnt(aCorner.X(), aCorner.Y(), aCorner.Z())));
105 if (thePoints.size() > 4)
108 // collect length of the edge
109 gp_Pnt aStart = aC3D->Value(aT1);
110 gp_Pnt aEnd = aC3D->Value(aT2);
112 if (aStart.Distance(aEnd) <= Precision::Confusion())
115 // check the edge is orthogonal to the previous
116 gp_XYZ aCurDir = (aEnd.XYZ() - aStart.XYZ()).Normalized();
117 if (aPrevDir.Dot(aCurDir) < Precision::Confusion())
125 //==================================================================================================
126 GeomPointPtr GeomAPI_Wire::middlePoint() const
128 // find middle edge in the wire
129 std::list<GeomShapePtr> aSubs = subShapes(EDGE);
130 size_t aNbSubs = aSubs.size();
132 return GeomPointPtr();
135 for (; aNbSubs > 0; --aNbSubs)
138 // compute middle point on the middle edge
139 return aSubs.front()->middlePoint();