0026106: BRepMesh - revision of data model
[occt.git] / tests / bugs / modalg_7 / bug29701_2
1 puts "========"
2 puts "OCC29701: BRepTools::Update(Face) unexpectedly updates UV points of pcurve"
3 puts "========"
4 puts ""
5
6 brestore [locate_data_file bug29701_hullshape.brep] s
7
8 # mesh the face
9 if {![regexp "NoError" [incmesh s 0.1]]} {
10   puts "Error: Unable to build triangulation"
11 }
12
13 if {![regexp "Reused" [incmesh s 0.1]]} {
14   puts "Error: Unable to build triangulation"
15 }
16
17 tcopy s copy
18
19 # mesh the copy face
20 if {![regexp "NoError" [incmesh copy 0.1]]} {
21   puts "Error: Unable to build triangulation on copy shape"
22 }
23
24 if {![regexp "Reused" [incmesh copy 0.1]]} {
25   puts "Error: Unable to build triangulation on copy shape"
26 }
27
28 fixshape fixed s
29
30 # mesh the fixed face
31 repeat 2 {
32   if {![regexp "Reused" [incmesh fixed 0.1]]} {
33     puts "Error: Unable to build triangulation on fixed shape"
34   }
35 }