1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/buc60917
dln e837410dac 0024927: Getting rid of "Persistent" functionality -- Tests
All uses of "MDTV-Standard" and "MDTV-Design" in tests changed to "BinOcaf", and "MDTV-XCAF" changed to "BinXCAF".
Formats changed: .std to .cbf, .dxc to .dbf.

Test groups renamed accordingly:
xcaf: brep_to_dxc -> brep_to_xbf, igs_to_dxc -> igs_to_xbf, stp_to_dxc -> stp_to_xbf, dxc -> xbf/A1, dxc_add_CL -> xbf_add_CL
xml: ocaf_std -> ocaf_cbf, xcaf_dxc -> xcaf_xbf
2015-05-21 14:52:32 +03:00

59 lines
1.0 KiB
Plaintext
Executable File

puts "==========="
puts "BUC60917"
puts "==========="
pload QAcommands
NewDocument D BinOcaf
UndoLimit D 100
box b 10 10 10
SetShape D 0:1:1 b
AISInitViewer D
OpenCommand D
AISSet D 0:1:1 NS
AISWidth D 0:1:1 1.0
set W [AISWidth D 0:1:1]
if { ${W} != 1 } {
puts "Error : 1"
} else {
AISDisplay D 0:1:1
vfit
CommitCommand D
puts "Doing Undo... "
Undo D
AISRepaint D
AISRepaint D
puts "And now, look: Redo!"
Redo D
AISRepaint D
set W [AISWidth D 0:1:1]
if { ${W} != 1 } {
puts "Error : 2"
}
}
set 3dviewer 2
# This TCL script demonstrates bug in AIS/OCAF viewer
#
# It needs an additional DRAW command to be defined for
# setting Width parameter of TPrsStd_AISPresentation attribute.
# The code for this command (AISWidth) is provided separately.
#
# The problem is that when width is set to AISPresentation attribute
# and Undo/redo are made, this causes error 'width is 0' in the viewer.
# It seems that width is not kept during Undo/Redo operations.