1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0024949: Segmentation Violation during pipe creation

Test cases for issue 0024949

Correction of test case for issue CR24949
This commit is contained in:
jgv 2014-08-21 12:28:08 +04:00 committed by bugmaster
parent 95a2cf2f74
commit 73920cd481
10 changed files with 107 additions and 3 deletions

View File

@ -72,6 +72,9 @@ is
---C++ : return const & ---C++ : return const &
is static; is static;
ErrorOnSurface (me)
returns Real from Standard;
FirstShape(me) returns Shape from TopoDS FirstShape(me) returns Shape from TopoDS
---C++ : return const & ---C++ : return const &
is static; is static;
@ -185,4 +188,6 @@ fields
myMode : Trihedron from GeomFill; myMode : Trihedron from GeomFill;
myForceApproxC1 : Boolean from Standard; myForceApproxC1 : Boolean from Standard;
myErrorOnSurf : Real from Standard;
end Pipe; end Pipe;

View File

@ -363,6 +363,16 @@ const TopoDS_Shape& BRepFill_Pipe::Shape() const
return myShape; return myShape;
} }
//=======================================================================
//function : ErrorOnSurface
//purpose :
//=======================================================================
Standard_Real BRepFill_Pipe::ErrorOnSurface() const
{
return myErrorOnSurf;
}
//======================================================================= //=======================================================================
//function : FirstShape //function : FirstShape
@ -521,6 +531,7 @@ TopoDS_Wire BRepFill_Pipe::PipeLine(const gp_Pnt& Point)
MkSw.Build( myReversedEdges, myTapes, myRails, MkSw.Build( myReversedEdges, myTapes, myRails,
BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax ); BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax );
TopoDS_Shape aLocalShape = MkSw.Shape(); TopoDS_Shape aLocalShape = MkSw.Shape();
myErrorOnSurf = MkSw.ErrorOnSurface();
return TopoDS::Wire(aLocalShape); return TopoDS::Wire(aLocalShape);
// return TopoDS::Wire(MkSw.Shape()); // return TopoDS::Wire(MkSw.Shape());
} }
@ -648,6 +659,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S,
MkSw.Build( myReversedEdges, myTapes, myRails, MkSw.Build( myReversedEdges, myTapes, myRails,
BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax ); BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax );
result = MkSw.Shape(); result = MkSw.Shape();
myErrorOnSurf = MkSw.ErrorOnSurface();
Handle(TopTools_HArray2OfShape) aSections = MkSw.Sections(); Handle(TopTools_HArray2OfShape) aSections = MkSw.Sections();
@ -669,6 +681,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S,
MkSw.Build( myReversedEdges, myTapes, myRails, MkSw.Build( myReversedEdges, myTapes, myRails,
BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax ); BRepFill_Modified, myContinuity, GeomFill_Location, myDegmax, mySegmax );
result = MkSw.Shape(); result = MkSw.Shape();
myErrorOnSurf = MkSw.ErrorOnSurface();
//Correct <myFirst> and <myLast> //Correct <myFirst> and <myLast>
ReverseModifiedEdges(myFirst, myReversedEdges); ReverseModifiedEdges(myFirst, myReversedEdges);
ReverseModifiedEdges(myLast, myReversedEdges); ReverseModifiedEdges(myLast, myReversedEdges);

View File

@ -256,6 +256,9 @@ is
returns Shape from TopoDS returns Shape from TopoDS
is static; is static;
ErrorOnSurface (me)
returns Real from Standard;
FirstShape (me) FirstShape (me)
---Purpose: Returns the TopoDS Shape of the bottom of the sweep. ---Purpose: Returns the TopoDS Shape of the bottom of the sweep.
---C++: return const & ---C++: return const &
@ -316,6 +319,8 @@ fields
myTrihedron : Trihedron from GeomFill; myTrihedron : Trihedron from GeomFill;
myTransition : TransitionStyle from BRepFill; myTransition : TransitionStyle from BRepFill;
myStatus : PipeError from GeomFill; myStatus : PipeError from GeomFill;
myErrorOnSurf : Real from Standard;
end PipeShell; end PipeShell;

View File

@ -773,6 +773,7 @@ void BRepFill_PipeShell::SetForceApproxC1(const Standard_Boolean ForceApproxC1)
if (Ok) { if (Ok) {
myShape = MkSw.Shape(); myShape = MkSw.Shape();
myErrorOnSurf = MkSw.ErrorOnSurface();
TopoDS_Shape aBottomWire = myFirst; TopoDS_Shape aBottomWire = myFirst;
TopoDS_Shape aTopWire = myLast; TopoDS_Shape aTopWire = myLast;
@ -879,6 +880,16 @@ const TopoDS_Shape& BRepFill_PipeShell::Shape() const
return myShape; return myShape;
} }
//=======================================================================
//function : ErrorOnSurface
//purpose :
//=======================================================================
Standard_Real BRepFill_PipeShell::ErrorOnSurface() const
{
return myErrorOnSurf;
}
//======================================================================= //=======================================================================
//function : FirstShape //function : FirstShape
//purpose : Return the start section //purpose : Return the start section

View File

@ -2456,8 +2456,13 @@ BRepFill_Sweep::BRepFill_Sweep(const Handle(BRepFill_SectionLaw)& Section,
Vertex(1,ipath+1), Vertex(1,ipath+1),
myTol3d); myTol3d);
} }
else UpdateEdge(TopoDS::Edge(UEdge(isec, ipath)), else
S, !exuv, UFirst); {
if (UEdge(isec, ipath).IsNull()) //sweep failed
return Standard_False;
UpdateEdge(TopoDS::Edge(UEdge(isec, ipath)),
S, !exuv, UFirst);
}
if (uclose && (isec==NbLaw)) { if (uclose && (isec==NbLaw)) {
UpdateEdge(TopoDS::Edge(UEdge(1, ipath)), UpdateEdge(TopoDS::Edge(UEdge(1, ipath)),

View File

@ -90,6 +90,11 @@ is
returns Shape from TopoDS; returns Shape from TopoDS;
ErrorOnSurface (me)
---Level: Public
returns Real from Standard;
fields fields
myPipe : Pipe from BRepFill; myPipe : Pipe from BRepFill;

View File

@ -22,6 +22,8 @@
#include <TopoDS_Vertex.hxx> #include <TopoDS_Vertex.hxx>
#include <TopoDS.hxx> #include <TopoDS.hxx>
#include <TopAbs_ShapeEnum.hxx> #include <TopAbs_ShapeEnum.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <TopExp.hxx>
//======================================================================= //=======================================================================
//function : BRepOffsetAPI_MakePipe //function : BRepOffsetAPI_MakePipe
@ -76,7 +78,13 @@ const BRepFill_Pipe& BRepOffsetAPI_MakePipe::Pipe() const
void BRepOffsetAPI_MakePipe::Build() void BRepOffsetAPI_MakePipe::Build()
{ {
myShape = myPipe.Shape(); myShape = myPipe.Shape();
Done(); //Check for emptiness of result
TopTools_IndexedMapOfShape theMap;
TopExp::MapShapes(myShape, theMap);
if (theMap.Extent() == 1)
NotDone();
else
Done();
} }
@ -122,3 +130,12 @@ TopoDS_Shape BRepOffsetAPI_MakePipe::Generated (const TopoDS_Shape& SSpine,
return bid; return bid;
} }
//=======================================================================
//function : ErrorOnSurface
//purpose :
//=======================================================================
Standard_Real BRepOffsetAPI_MakePipe::ErrorOnSurface() const
{
return myPipe.ErrorOnSurface();
}

View File

@ -349,6 +349,9 @@ is
returns ListOfShape from TopTools returns ListOfShape from TopTools
is redefined; is redefined;
ErrorOnSurface (me)
returns Real from Standard;
fields fields
myPipe : PipeShell from BRepFill; myPipe : PipeShell from BRepFill;

View File

@ -305,3 +305,12 @@ BRepOffsetAPI_MakePipeShell::Generated(const TopoDS_Shape& S)
return myGenerated; return myGenerated;
} }
//=======================================================================
//function : ErrorOnSurface
//purpose :
//=======================================================================
Standard_Real BRepOffsetAPI_MakePipeShell::ErrorOnSurface() const
{
return myPipe->ErrorOnSurface();
}

View File

@ -0,0 +1,31 @@
puts "============"
puts "OCC24949"
puts "============"
puts ""
#######################################################################
# Segmentation Violation during pipe creation
#######################################################################
restore [locate_data_file bug24949_Comp.brep] c
explode c
mksweep c_1
addsweep c_2
catch {buildsweep res}
restore [locate_data_file bug24949_Comp.brep] c
explode c
pipe result c_1 c_2 2
set square 188.689
set nb_v_good 14
set nb_e_good 19
set nb_w_good 6
set nb_f_good 6
set nb_sh_good 1
set nb_sol_good 0
set nb_compsol_good 0
set nb_compound_good 0
set nb_shape_good 46
set 2dviewer 1