0029380: Delete "checknbshapes" from bugs/modalg_6/bug27341* test cases
[occt.git] / tests / bugs / modalg_6 / bug28601
CommitLineData
0af424c2 1puts "========"
2puts "OCC28601"
3puts "========"
4puts ""
5###################################################################
6# ShapeFix_Shape increases tolerance of sub-shapes of a valid shape
7###################################################################
8
9box b 10 10 10
10set tol_before [checkmaxtol b]
11fixshape b1 b
12set tol_after [checkmaxtol b1]
13
14puts "MAX tolerance shape before fixshape : $tol_before"
15puts "MAX tolerance shape after fixshape : $tol_after"
16
17if { ${tol_after} > ${tol_before} } {
18 puts "Error: Export /Import cause increasing tolerances of shape"
19} else {
20 puts "Export /Import does not cause increasing tolerances of shape"
21}