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

0027078: Exception in ShapeFixIntersectionTool::UnionVertexes()

Add checks to avoid exceptions.
Remove check for small 3D curve, now pcurve will be built for all small edges, which have not been removed by FixSmall.
This commit is contained in:
ika 2016-01-14 15:46:25 +03:00 committed by abv
parent 163d7e8d46
commit b846d1e002
4 changed files with 47 additions and 22 deletions

View File

@ -466,7 +466,7 @@ Standard_Boolean ShapeFix_Edge::FixAddPCurve (const TopoDS_Edge& edge,
Standard_Real preci = ( prec >0. ? prec : BRep_Tool::Tolerance(edge) );
Handle(Geom_Curve) c3d = BRep_Tool::Curve(edge, /*Loc,*/ First, Last);
// Handle(Geom_Curve) c3d = BRep_Tool::Curve(E, First, Last);
if (c3d.IsNull() || (Abs(Last-First) <Precision::PConfusion())) {
if (c3d.IsNull()) {
myStatus |= ShapeExtend::EncodeStatus (ShapeExtend_FAIL1);
return Standard_False;
}

View File

@ -485,28 +485,32 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
if(V21F.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge21,V1F,V21L);
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V21L.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1F);
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V22F.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge22,V1F,V22L);
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
if(V22L.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1F);
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
@ -545,28 +549,32 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
if(V21F.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge21,V1F,V21L);
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V21L.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1F);
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V22F.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge22,V1F,V22L);
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
if(V22L.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1F);
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
@ -604,28 +612,32 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
if(V21F.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge21,V1L,V21L);
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V21L.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1L);
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V22F.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge22,V1L,V22L);
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
if(V22L.IsSame(V2F)) {
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1L);
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
@ -663,28 +675,32 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
if(V21F.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge21,V1L,V21L);
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V21L.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1L);
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
if (boxes.IsBound(edge21))
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
myContext->Replace(edge21,NewE);
sewd->Set(NewE,num21);
}
if(V22F.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge22,V1L,V22L);
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}
if(V22L.IsSame(V2L)) {
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1L);
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
if (boxes.IsBound(edge22))
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
myContext->Replace(edge22,NewE);
sewd->Set(NewE,num22);
}

8
tests/bugs/heal/bug27078 Normal file
View File

@ -0,0 +1,8 @@
##################################################################
# OCC27078: Exception in ShapeFixIntersectionTool::UnionVertexes()
##################################################################
testreadiges [locate_data_file bug27078.igs] a
# fixshape should not throw an exception
fixshape result a

View File

@ -1,7 +1,8 @@
# !!!! This file is generated automatically, do not edit manually! See end script
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
puts "TODO CR23096 ALL: NBSHAPES : Faulty"
puts "TODO CR23096 ALL: LABELS : Faulty"
puts "TODO CR23096 ALL: COLORS : Faulty"
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
set filename ims016.igs
@ -9,10 +10,10 @@ set filename ims016.igs
set ref_data {
DATA : Faulties = 0 ( 0 ) Warnings = 0 ( 0 ) Summary = 0 ( 0 )
TPSTAT : Faulties = 0 ( 0 ) Warnings = 120 ( 402 ) Summary = 120 ( 402 )
CHECKSHAPE : Wires = 4 ( 0 ) Faces = 2 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) Summary = 10599 ( 10569 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) FreeWire = 6 ( 6 ) FreeEdge = 353 ( 353 ) SharedEdge = 4953 ( 4953 )
TOLERANCE : MaxTol = 0.2092687841 ( 0.2092687804 ) AvgTol = 0.0009010196362 ( 0.0009882759183 )
CHECKSHAPE : Wires = 2 ( 0 ) Faces = 2 ( 0 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) Summary = 10567 ( 10569 )
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 138 ( 138 ) FreeWire = 6 ( 6 ) FreeEdge = 353 ( 353 ) SharedEdge = 4951 ( 4953 )
TOLERANCE : MaxTol = 0.2092687841 ( 0.2092687804 ) AvgTol = 0.001094782521 ( 0.0009882759182 )
LABELS : N0Labels = 503 ( 503 ) N1Labels = 0 ( 200 ) N2Labels = 0 ( 0 ) TotalLabels = 503 ( 703 ) NameLabels = 503 ( 503 ) ColorLabels = 470 ( 703 ) LayerLabels = 313 ( 344 )
PROPS : Centroid = 0 ( 0 ) Volume = 0 ( 0 ) Area = 0 ( 0 )
NCOLORS : NColors = 6 ( 7 )