From aa3f8c1999d2c50fe33882cb8e5b6f1a8ff4006d Mon Sep 17 00:00:00 2001 From: gka Date: Mon, 15 May 2006 13:47:53 +0000 Subject: [PATCH] Debug of thru sections --- src/GEOMImpl/GEOMImpl_ThruSectionsDriver.cxx | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/GEOMImpl/GEOMImpl_ThruSectionsDriver.cxx b/src/GEOMImpl/GEOMImpl_ThruSectionsDriver.cxx index 98a9833c5..822b1f764 100644 --- a/src/GEOMImpl/GEOMImpl_ThruSectionsDriver.cxx +++ b/src/GEOMImpl/GEOMImpl_ThruSectionsDriver.cxx @@ -86,7 +86,7 @@ Standard_Integer GEOMImpl_ThruSectionsDriver::Execute(TFunction_Logbook& log) co return 0; BRepOffsetAPI_ThruSections aBuilder(isSolid,aType == THRUSECTIONS_RULED,aPreci); - + aBuilder.CheckCompatibility(Standard_False); //added sections for building surface Standard_Integer i =1; Standard_Integer nbAdded =0; @@ -104,7 +104,8 @@ Standard_Integer GEOMImpl_ThruSectionsDriver::Execute(TFunction_Logbook& log) co TopAbs_ShapeEnum aTypeSect = aShapeSection.ShapeType(); if(aTypeSect == TopAbs_WIRE) { - BRepBuilderAPI_MakeWire aTool; + aBuilder.AddWire(TopoDS::Wire(aShapeSection)); + /*BRepBuilderAPI_MakeWire aTool; TopExp_Explorer aExp(aShapeSection,TopAbs_EDGE); for( ; aExp.More() ; aExp.Next()) @@ -113,7 +114,7 @@ Standard_Integer GEOMImpl_ThruSectionsDriver::Execute(TFunction_Logbook& log) co { TopoDS_Wire aSectWire = aTool.Wire();//TopoDS::Wire(aShapeSection); aBuilder.AddWire(aSectWire); - } + }*/ } else if(aTypeSect == TopAbs_EDGE) { TopoDS_Edge anEdge = TopoDS::Edge(aShapeSection); @@ -134,13 +135,15 @@ Standard_Integer GEOMImpl_ThruSectionsDriver::Execute(TFunction_Logbook& log) co aBuilder.Build(); TopoDS_Shape aShape = aBuilder.Shape(); - if (aShape.IsNull()) return 0; - - BRepCheck_Analyzer ana (aShape, Standard_False); - if (!ana.IsValid()) { - Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result"); + if (aShape.IsNull()) { + return 0; } + //BRepCheck_Analyzer ana (aShape, Standard_False); + //if (!ana.IsValid()) { + // Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result"); + //} + aFunction->SetValue(aShape); log.SetTouched(Label()); -- 2.39.2