1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033049: Command 'tclean -geom' does not remove all geometric objects from the shape

Remove unused P-curves when cleaning the geometry
This commit is contained in:
azv 2022-07-01 15:59:40 +03:00 committed by smoskvin
parent b47b075ac5
commit d74b1e9dd3
2 changed files with 27 additions and 0 deletions

View File

@ -893,6 +893,8 @@ void BRepTools::CleanGeometry(const TopoDS_Shape& theShape)
aBuilder.UpdateEdge(anEdge, Handle(Geom_Curve)(),
TopLoc_Location(), BRep_Tool::Tolerance(anEdge));
}
RemoveUnusedPCurves(theShape);
}

View File

@ -0,0 +1,25 @@
puts "================================================================="
puts "0033049: Command 'tclean -geom' does not remove all geometric objects from the shape"
puts "================================================================="
puts ""
psphere s1 10
pcylinder s2 8 20
pcone s3 10 8 5
ttranslate s1 0 0 25
ttranslate s3 0 0 -5
baddobjects s1
baddtools s2 s3
bfillds
bbop s fuse
incmesh s 0.1
tclean -geom s
regexp {Dump of ([0-9+-]*) Curve2ds.*Dump of ([0-9+-]*) Curves.*Dump of ([0-9+-]*) surfaces} [dump s] full nbC2d nbC3d nbSurf
if {$nbC2d != 0 || $nbC3d != 0 || $nbSurf != 0} {
puts "Error: geometry is not fully removed"
} else {
puts "OK: shape has no geometry"
}