1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug28601
imn 0af424c23c 0028601: ShapeFix_Shape increases tolerance of sub-shapes of a valid shape
- Avoid increase of edge/vertex tolerance if the distance between 3D curve and p-curve is within old tolerance.
2017-04-28 12:44:51 +03:00

21 lines
652 B
Plaintext

puts "========"
puts "OCC28601"
puts "========"
puts ""
###################################################################
# ShapeFix_Shape increases tolerance of sub-shapes of a valid shape
###################################################################
box b 10 10 10
set tol_before [checkmaxtol b]
fixshape b1 b
set tol_after [checkmaxtol b1]
puts "MAX tolerance shape before fixshape : $tol_before"
puts "MAX tolerance shape after fixshape : $tol_after"
if { ${tol_after} > ${tol_before} } {
puts "Error: Export /Import cause increasing tolerances of shape"
} else {
puts "Export /Import does not cause increasing tolerances of shape"
}