6ab8bef7454a563d6b6a8f30e2bc7b62bbc19f9e
[occt.git] / tests / bugs / mesh / bug26532
1 puts "========"
2 puts "OCC26532"
3 puts "========"
4 puts ""
5 #######################################################################
6 # Meshing of edge with minSize parameter leads to incorrect result
7 #######################################################################
8
9 restore [locate_data_file bug26533_aal2.brep] a
10
11 vinit
12 vdisplay a
13 vfit
14 vdump ${imagedir}/${casename}_1.png
15
16 # with min size
17 # => ugly curve
18 vclear
19 incmesh a 0.3 -min 0.06
20 vdisplay a
21 vdump ${imagedir}/${casename}_2.png
22
23 # without min size
24 # => nice curve
25 vclear
26 incmesh a 0.3
27 vdisplay a
28 vdump ${imagedir}/${casename}_3.png