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:
parent
163d7e8d46
commit
b846d1e002
@ -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;
|
||||
}
|
||||
|
@ -485,6 +485,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21F.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V1F,V21L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -492,6 +493,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21L.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1F);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -499,6 +501,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22F.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V1F,V22L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -506,6 +509,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22L.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1F);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -545,6 +549,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21F.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V1F,V21L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -552,6 +557,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21L.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1F);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -559,6 +565,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22F.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V1F,V22L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -566,6 +573,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22L.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1F);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -604,6 +612,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21F.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V1L,V21L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -611,6 +620,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21L.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -618,6 +628,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22F.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V1L,V22L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -625,6 +636,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22L.IsSame(V2F)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -663,6 +675,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21F.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V1L,V21L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V,V21L);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -670,6 +683,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V21L.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge21,V21F,V1L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge21,V21F,V);
|
||||
if (boxes.IsBound(edge21))
|
||||
boxes.Bind(NewE,boxes.Find(edge21)); // update boxes
|
||||
myContext->Replace(edge21,NewE);
|
||||
sewd->Set(NewE,num21);
|
||||
@ -677,6 +691,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22F.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V1L,V22L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V,V22L);
|
||||
if (boxes.IsBound(edge22))
|
||||
boxes.Bind(NewE,boxes.Find(edge22)); // update boxes
|
||||
myContext->Replace(edge22,NewE);
|
||||
sewd->Set(NewE,num22);
|
||||
@ -684,6 +699,7 @@ Standard_Boolean ShapeFix_IntersectionTool::UnionVertexes(const Handle(ShapeExte
|
||||
if(V22L.IsSame(V2L)) {
|
||||
NewE = sbe.CopyReplaceVertices(edge22,V22F,V1L);
|
||||
//NewE = sbe.CopyReplaceVertices(edge22,V22F,V);
|
||||
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
8
tests/bugs/heal/bug27078
Normal 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
|
@ -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 )
|
||||
|
Loading…
x
Reference in New Issue
Block a user