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