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