mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Avoid increase of edge/vertex tolerance if the distance between 3D curve and p-curve is within old tolerance.
21 lines
652 B
Plaintext
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"
|
|
} |