0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / tests / bugs / mesh / bug25503_2
CommitLineData
4a913f21 1puts "============"
7bd071ed 2puts "CR25503: BRepMesh - IncrementalMesh always re-meshes the shape even if existing triangulation satisfies the given deflection"
4a913f21 3puts "============"
4puts ""
4a913f21 5
6puts ""
7puts "===> meshing full sphere"
8psphere a 100
9puts ""
10puts "incmesh first time"
11set t3 [expr [lindex [time {incmesh a 0.015}] 0]/1000000]
12puts "spent $t3 sec"
13puts ""
14puts "incmesh second time"
15set t4 [expr [lindex [time {incmesh a 0.015}] 0]/1000000]
16puts "spent $t4 sec"
17if {$t4 != 0} {puts "Error: second time must be quicker"}
18puts ""