1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROData_LCM_FaceClassifier.h"
21 #include <HYDROData_LandCoverMap.h>
22 #include <Bnd_Box2d.hxx>
23 #include <BRepTools.hxx>
24 #include <BRepBndLib.hxx>
25 #include <Bnd_Box.hxx>
26 #include <NCollection_UBTree.hxx>
27 #include <NCollection_UBTreeFiller.hxx>
28 #include <BRepTopAdaptor_FClass2d.hxx>
30 #include <TopTools_IndexedMapOfShape.hxx>
31 #include <Geom_Plane.hxx>
32 #include <BRep_Tool.hxx>
33 #include <Geom_Surface.hxx>
36 Standard_Boolean HYDROData_FaceClassifier_BndBoxTreeSelector::Accept (const Standard_Integer& theObj)
38 if (theObj > myMapF2Class2d.Extent())
39 return Standard_False;
41 const TopoDS_Face& f = TopoDS::Face(myMapF2Class2d.FindKey(theObj));
43 return Standard_False;
45 BRepTopAdaptor_FClass2d* class2d = myMapF2Class2d.FindFromKey(f);
47 Handle(Geom_Plane) Pl = HYDROData_LCM_FaceClassifier::GetPlane(f);
49 ElSLib::Parameters(Pl->Pln(), gp_Pnt(myP.X(), myP.Y(), 0.0), u, v);
50 TopAbs_State aState = class2d->Perform( gp_Pnt2d(u, v), Standard_False );
52 if (aState == TopAbs_IN)
55 myStop = 1; //no more faces includes this point; quit
58 else if (aState == TopAbs_ON)
64 return Standard_False;
68 Handle(Geom_Plane) HYDROData_LCM_FaceClassifier::GetPlane(const TopoDS_Face& F)
71 Handle(Geom_Surface) S = BRep_Tool::Surface(F, L);
72 Handle(Geom_Plane) Pl = Handle(Geom_Plane)::DownCast(S->Transformed(L.Transformation()));
76 void HYDROData_LCM_FaceClassifier::Classify( const std::vector<gp_XY>& thePoints,
77 std::vector<std::set <QString> >& theTypes,
78 std::vector<NCollection_Map<TopoDS_Face> >* theFaces) const
80 HYDROData_LandCoverMap::Explorer anIt( *myLCM );
81 HYDROData_MapOfFaceToStricklerType aMapF2ST;
82 TopTools_IndexedMapOfShape aFaces;
83 for( ; anIt.More(); anIt.Next() )
85 const TopoDS_Face& F = anIt.Face();
86 aMapF2ST.Add(F, anIt.StricklerType());
90 HYDROData_FaceClassifier_BndBoxTree aTree;
91 NCollection_UBTreeFiller <Standard_Integer, Bnd_Box2d> aTreeFiller (aTree);
92 NCollection_IndexedDataMap<TopoDS_Face, BRepTopAdaptor_FClass2d*> aMapF2Class2d;
94 int NbF = aFaces.Extent();
95 std::vector<BRepTopAdaptor_FClass2d*> fclass2dpointers;
96 fclass2dpointers.reserve(NbF);
98 for (int i = 1; i <= NbF; i++)
101 const TopoDS_Face& F = TopoDS::Face(aFaces(i));
102 BRepBndLib::Add(F, b3d);
104 NB.Update(b3d.CornerMin().X(), b3d.CornerMin().Y(), b3d.CornerMax().X(), b3d.CornerMax().Y() );
105 aTreeFiller.Add(i, NB);
106 BRepTopAdaptor_FClass2d* aClass2d = new BRepTopAdaptor_FClass2d( F, 1E-7 );
107 aMapF2Class2d.Add(F, aClass2d);
108 fclass2dpointers.push_back(aClass2d);
113 size_t pntsize = thePoints.size();
114 theTypes.resize(pntsize);
116 theFaces->resize(pntsize);
118 Standard_Integer aSel = 0;
119 for (size_t i = 0; i < pntsize; i++ )
121 HYDROData_FaceClassifier_BndBoxTreeSelector aSelector(aMapF2Class2d);
122 const gp_Pnt2d& pnt2d = thePoints[i];
123 aSelector.SetCurrentPoint(pnt2d);
124 aSel = aTree.Select(aSelector);
127 const NCollection_List<TopoDS_Face>& rf = aSelector.GetResFaces();
128 NCollection_List<TopoDS_Face>::Iterator it(rf);
129 for (;it.More();it.Next())
131 const TopoDS_Face& f = it.Value();
132 QString aST = aMapF2ST.FindFromKey(f);
133 theTypes[i].insert(aST);
135 (*theFaces)[i].Add(f);
140 for (size_t i = 0; i < fclass2dpointers.size(); i++)
141 delete fclass2dpointers[i];