1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include <Standard_Stream.hxx>
23 #include <GEOMImpl_FillingDriver.hxx>
24 #include <GEOM_Function.hxx>
25 #include <GEOMImpl_IFilling.hxx>
26 #include <GEOMImpl_Types.hxx>
28 #include <BRep_Tool.hxx>
29 #include <BRepAlgo.hxx>
30 #include <BRepBuilderAPI_MakeFace.hxx>
34 #include <TopoDS_Shape.hxx>
35 #include <TopExp_Explorer.hxx>
37 #include <Geom_Curve.hxx>
38 #include <Geom_Surface.hxx>
39 #include <Geom_TrimmedCurve.hxx>
40 #include <Geom_BSplineSurface.hxx>
41 #include <GeomFill_Line.hxx>
42 #include <GeomFill_AppSurf.hxx>
43 #include <GeomFill_SectionGenerator.hxx>
45 #include <Precision.hxx>
46 #include <Standard_ConstructionError.hxx>
48 //=======================================================================
51 //=======================================================================
52 const Standard_GUID& GEOMImpl_FillingDriver::GetID()
54 static Standard_GUID aFillingDriver ("FF1BBB62-5D14-4df2-980B-3A668264EA16");
55 return aFillingDriver;
59 //=======================================================================
60 //function : GEOMImpl_FillingDriver
62 //=======================================================================
64 GEOMImpl_FillingDriver::GEOMImpl_FillingDriver()
68 //=======================================================================
71 //=======================================================================
72 Standard_Integer GEOMImpl_FillingDriver::Execute(TFunction_Logbook& log) const
74 if (Label().IsNull()) return 0;
75 Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
76 if (aFunction.IsNull()) return 0;
78 if (aFunction->GetType() != BASIC_FILLING) return 0;
80 GEOMImpl_IFilling IF (aFunction);
81 Handle(GEOM_Function) aShapeFunction = IF.GetShape();
82 if (aShapeFunction.IsNull()) return 0;
83 TopoDS_Shape aShape = aShapeFunction->GetValue();
84 if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND) return 0;
86 Standard_Integer mindeg = IF.GetMinDeg();
87 Standard_Integer maxdeg = IF.GetMaxDeg();
88 Standard_Real tol3d = IF.GetTol2D();
89 Standard_Real tol2d = IF.GetTol3D();
90 Standard_Integer nbiter = IF.GetNbIter();
92 if (mindeg > maxdeg) {
93 Standard_RangeError::Raise("Minimal degree can not be more than maximal degree");
96 /* we verify the contents of the shape */
98 TopoDS_Shape Scurrent;
99 Standard_Real First, Last;
100 Handle(Geom_Curve) C;
101 GeomFill_SectionGenerator Section;
103 Standard_Integer i = 0;
104 for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
105 Scurrent = Ex.Current() ;
106 if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
107 C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
108 C = new Geom_TrimmedCurve(C, First, Last);
113 /* a 'tolerance' is used to compare 2 knots : see GeomFill_Generator.cdl */
114 Section.Perform(Precision::Confusion());
115 Handle(GeomFill_Line) Line = new GeomFill_Line(i);
117 GeomFill_AppSurf App (mindeg, maxdeg, tol3d, tol2d, nbiter); /* user parameters */
118 App.Perform(Line, Section);
120 if (!App.IsDone()) return 0;
121 Standard_Integer UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots;
122 App.SurfShape(UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots);
123 Handle(Geom_BSplineSurface) GBS = new Geom_BSplineSurface
124 (App.SurfPoles(), App.SurfWeights(), App.SurfUKnots(), App.SurfVKnots(),
125 App.SurfUMults(), App.SurfVMults(), App.UDegree(), App.VDegree());
127 if (GBS.IsNull()) return 0;
128 aShape = BRepBuilderAPI_MakeFace(GBS);
130 /* We test the validity of resulting shape */
131 if (!BRepAlgo::IsValid((aShape))) {
132 Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result");
136 aFunction->SetValue(aShape);
138 log.SetTouched(Label());
143 //=======================================================================
144 //function : GEOMImpl_FillingDriver_Type_
146 //=======================================================================
147 Standard_EXPORT Handle_Standard_Type& GEOMImpl_FillingDriver_Type_()
150 static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
151 if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
152 static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
153 if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
154 static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
155 if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
158 static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
159 static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_FillingDriver",
160 sizeof(GEOMImpl_FillingDriver),
162 (Standard_Address)_Ancestors,
163 (Standard_Address)NULL);
168 //=======================================================================
169 //function : DownCast
171 //=======================================================================
173 const Handle(GEOMImpl_FillingDriver) Handle(GEOMImpl_FillingDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
175 Handle(GEOMImpl_FillingDriver) _anOtherObject;
177 if (!AnObject.IsNull()) {
178 if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_FillingDriver))) {
179 _anOtherObject = Handle(GEOMImpl_FillingDriver)((Handle(GEOMImpl_FillingDriver)&)AnObject);
183 return _anOtherObject ;