]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMImpl/GEOMImpl_FillingDriver.cxx
Salome HOME
Update copyright information
[modules/geom.git] / src / GEOMImpl / GEOMImpl_FillingDriver.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #include <Standard_Stream.hxx>
23
24 #include <GEOMImpl_FillingDriver.hxx>
25 #include <GEOM_Function.hxx>
26 #include <GEOMImpl_IFilling.hxx>
27 #include <GEOMImpl_Types.hxx>
28
29 #include <BRep_Tool.hxx>
30 #include <BRepAlgo.hxx>
31 #include <BRepBuilderAPI_MakeFace.hxx>
32
33 #include <TopAbs.hxx>
34 #include <TopoDS.hxx>
35 #include <TopoDS_Shape.hxx>
36 #include <TopExp_Explorer.hxx>
37
38 #include <Geom_Curve.hxx>
39 #include <Geom_Surface.hxx>
40 #include <Geom_TrimmedCurve.hxx>
41 #include <Geom_BSplineSurface.hxx>
42 #include <GeomFill_Line.hxx>
43 #include <GeomFill_AppSurf.hxx>
44 #include <GeomFill_SectionGenerator.hxx>
45
46 #include <Precision.hxx>
47 #include <Standard_ConstructionError.hxx>
48
49 #include <TColGeom_SequenceOfCurve.hxx>
50 #include <ShapeFix_Face.hxx>
51 #include <GeomAPI_PointsToBSplineSurface.hxx>
52 #include <Geom_BSplineCurve.hxx>
53
54 //=======================================================================
55 //function : GetID
56 //purpose  :
57 //=======================================================================
58 const Standard_GUID& GEOMImpl_FillingDriver::GetID()
59 {
60   static Standard_GUID aFillingDriver ("FF1BBB62-5D14-4df2-980B-3A668264EA16");
61   return aFillingDriver;
62 }
63
64
65 //=======================================================================
66 //function : GEOMImpl_FillingDriver
67 //purpose  :
68 //=======================================================================
69
70 GEOMImpl_FillingDriver::GEOMImpl_FillingDriver()
71 {
72 }
73
74 //=======================================================================
75 //function : Execute
76 //purpose  :
77 //=======================================================================
78 Standard_Integer GEOMImpl_FillingDriver::Execute(TFunction_Logbook& log) const
79 {
80   if (Label().IsNull()) return 0;
81   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
82   if (aFunction.IsNull()) return 0;
83
84   if (aFunction->GetType() != BASIC_FILLING) return 0;
85
86   GEOMImpl_IFilling IF (aFunction);
87   Handle(GEOM_Function) aShapeFunction = IF.GetShape();
88   if (aShapeFunction.IsNull()) return 0;
89   TopoDS_Shape aShape = aShapeFunction->GetValue();
90   if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND) return 0;
91
92   Standard_Integer mindeg = IF.GetMinDeg();
93   Standard_Integer maxdeg = IF.GetMaxDeg();
94   Standard_Real tol3d = IF.GetTol2D();
95   Standard_Real tol2d = IF.GetTol3D();
96   Standard_Integer nbiter = IF.GetNbIter();
97   Standard_Boolean isApprox = IF.GetApprox();
98
99   if (mindeg > maxdeg) {
100     Standard_RangeError::Raise("Minimal degree can not be more than maximal degree");
101   }
102
103   /* we verify the contents of the shape */
104   TopExp_Explorer Ex;
105   TopoDS_Shape Scurrent;
106   Standard_Real First, Last;
107   Handle(Geom_Curve) C;
108
109   if(!isApprox) {
110     // make filling as in old version of SALOME (before 4.1.1)
111     GeomFill_SectionGenerator Section;
112     Standard_Integer i = 0;
113     for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
114       Scurrent = Ex.Current() ;
115       if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
116       C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
117       C = new Geom_TrimmedCurve(C, First, Last);
118       Section.AddCurve(C);
119       i++;
120     }
121     
122     /* a 'tolerance' is used to compare 2 knots : see GeomFill_Generator.cdl */
123     Section.Perform(Precision::Confusion());
124     Handle(GeomFill_Line) Line = new GeomFill_Line(i);
125     
126     GeomFill_AppSurf App (mindeg, maxdeg, tol3d, tol2d, nbiter); /* user parameters */
127     App.Perform(Line, Section);
128     
129     if (!App.IsDone()) return 0;
130     Standard_Integer UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots;
131     App.SurfShape(UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots);
132     Handle(Geom_BSplineSurface) GBS = new Geom_BSplineSurface
133       (App.SurfPoles(), App.SurfWeights(), App.SurfUKnots(), App.SurfVKnots(),
134        App.SurfUMults(), App.SurfVMults(), App.UDegree(), App.VDegree());
135     
136     if (GBS.IsNull()) return 0;
137     aShape = BRepBuilderAPI_MakeFace(GBS);
138   }    
139   else {
140     // implemented by skl 20.03.2008 for bug 16568
141     // make approximation - try to create bspline surface
142     // using GeomAPI_PointsToBSplineSurface
143     TColGeom_SequenceOfCurve aSeq;
144     int MaxNbPoles = 0;
145     // add curves from edges to sequence and find maximal
146     // number of poles if some of them are bsplines
147     for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
148       Scurrent = Ex.Current() ;
149       if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
150       C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
151       Handle(Geom_TrimmedCurve) TC = Handle(Geom_TrimmedCurve)::DownCast(C);
152       if(TC.IsNull()) {
153         Handle(Geom_BSplineCurve) BC = Handle(Geom_BSplineCurve)::DownCast(C);
154         if(!BC.IsNull()) {
155           MaxNbPoles = Max(MaxNbPoles,BC->NbPoles());
156         }
157       }
158       else {
159         Handle(Geom_BSplineCurve) BC = Handle(Geom_BSplineCurve)::DownCast(TC->BasisCurve());
160         if(BC.IsNull()) {
161           Handle(Geom_TrimmedCurve) TC1 = Handle(Geom_TrimmedCurve)::DownCast(TC->BasisCurve());
162           if(!TC1.IsNull()) {
163             BC = Handle(Geom_BSplineCurve)::DownCast(TC1->BasisCurve());
164           }
165         }
166         if(!BC.IsNull()) {
167           MaxNbPoles = Max(MaxNbPoles,BC->NbPoles());
168         }
169       }
170       aSeq.Append(C);
171     }
172     // prepare array of points for creation bspline surface
173     // size of this array: by U parameter - number of curves,
174     // by V parameter - determ using MaxNbPoles but it's
175     // value must be between 21(min) and 101(max)
176     int nbc = aSeq.Length();
177     int nbp = Max(21,2*MaxNbPoles-1);
178     if(nbp>101) nbp = 101;
179     TColgp_Array2OfPnt Points(1,nbc,1,nbp);
180     int ic = 1;
181     for(; ic<=nbc; ic++) {
182       Handle(Geom_Curve) C = aSeq.Value(ic);
183       double fp = C->FirstParameter();
184       double lp = C->LastParameter();
185       double dp = (lp-fp)/(nbp-1);
186       int j = 0;
187       gp_Pnt P;
188       for(; j<nbp; j++) {
189         C->D0(fp+dp*j,P);
190         Points.SetValue(ic,j+1,P);
191       }
192     }
193     GeomAPI_PointsToBSplineSurface PTB(Points,mindeg,maxdeg,GeomAbs_C2,tol3d);
194     Handle(Geom_BSplineSurface) BS = PTB.Surface();
195     BRepBuilderAPI_MakeFace BB(BS);
196     TopoDS_Face NewF = BB.Face();
197     Handle(ShapeFix_Face) sff = new ShapeFix_Face(NewF);
198     sff->Perform();
199     sff->FixOrientation();
200     aShape = sff->Face();
201   }
202
203   /* We test the validity of resulting shape */
204   if (!BRepAlgo::IsValid((aShape))) {
205     Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result");
206     return 0;
207   }
208
209   aFunction->SetValue(aShape);
210
211   log.SetTouched(Label());
212   return 1;
213 }
214
215
216 //=======================================================================
217 //function :  GEOMImpl_FillingDriver_Type_
218 //purpose  :
219 //=======================================================================
220 Standard_EXPORT Handle_Standard_Type& GEOMImpl_FillingDriver_Type_()
221 {
222
223   static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
224   if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
225   static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
226   if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
227   static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
228   if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
229
230
231   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
232   static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_FillingDriver",
233                                                          sizeof(GEOMImpl_FillingDriver),
234                                                          1,
235                                                          (Standard_Address)_Ancestors,
236                                                          (Standard_Address)NULL);
237
238   return _aType;
239 }
240
241 //=======================================================================
242 //function : DownCast
243 //purpose  :
244 //=======================================================================
245
246 const Handle(GEOMImpl_FillingDriver) Handle(GEOMImpl_FillingDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
247 {
248   Handle(GEOMImpl_FillingDriver) _anOtherObject;
249
250   if (!AnObject.IsNull()) {
251      if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_FillingDriver))) {
252        _anOtherObject = Handle(GEOMImpl_FillingDriver)((Handle(GEOMImpl_FillingDriver)&)AnObject);
253      }
254   }
255
256   return _anOtherObject ;
257 }
258
259