0025783: Visualization - allow Z-layer to draw 2D objects and to make it alternative...
[occt.git] / tests / bugs / iges / bug22820
CommitLineData
a8fcd8d0 1puts "================"
2puts "OCC22820"
3puts "================"
4puts ""
5#######################################################################################
6# OCCT IGES writer loses plane information
7######################################################################################
8
a8fcd8d0 9box b 1 1 1
10set b_info [dump b]
11if { [regexp BSplineSurface ${b_info}] } {
12 puts "Error in dump b"
13}
14
5879dab4 15brepiges b ${imagedir}/22820.igs
16igesbrep ${imagedir}/22820.igs bb *
a8fcd8d0 17
18set types_info [listtypes]
19puts "types_info=${types_info}"
20if { [regexp BSplineSurface ${types_info}] } {
21 puts "Error in listtypes"
22}
23
5879dab4 24igesbrep ${imagedir}/22820.igs bb *
a8fcd8d0 25set bb_info [dump bb]
26if { [regexp BSplineSurface ${bb_info}] } {
27 puts "Error in dump bb"
28}