mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Added new option Graphic3d_RenderingParams::ToSmoothInterlacing enabled by default. Added -smooth option to vstereo command. Added -dpiAware option to vinit command (Windows).
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
puts "========"
|
|
puts "Stereo output modes"
|
|
puts "========"
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
restore [locate_data_file occ/fuse.brep] f
|
|
vclear
|
|
vclose ALL
|
|
vinit View1
|
|
vsetdispmode 1
|
|
vaxo
|
|
vdisplay f
|
|
vfit
|
|
vrotate -0.5 0.0 0.0
|
|
|
|
vstereo -mode anaglyph
|
|
vfit
|
|
vdump $::imagedir/${::casename}_anaglyph.png -stereo blend
|
|
|
|
vstereo -mode columnInterlaced -smooth 0
|
|
vdump $::imagedir/${::casename}_col.png -stereo blend
|
|
|
|
vstereo -mode columnInterlaced -smooth 1
|
|
vdump $::imagedir/${::casename}_col_smooth.png -stereo blend
|
|
|
|
vstereo -mode chessBoard -smooth 0
|
|
vdump $::imagedir/${::casename}_chess.png -stereo blend
|
|
|
|
vstereo -mode chessBoard -smooth 1
|
|
vdump $::imagedir/${::casename}_chess_smooth.png -stereo blend
|
|
|
|
vstereo -mode rowInterlaced -smooth 0
|
|
vdump $::imagedir/${::casename}_row.png -stereo blend
|
|
|
|
vstereo -mode rowInterlaced -smooth 1
|
|
vdump $::imagedir/${::casename}_row_smooth.png -stereo blend
|
|
|
|
vstereo -mode sideBySide
|
|
vdump $::imagedir/${::casename}_sbs_anamorph.png -stereo blend
|
|
|
|
vstereo -mode overUnder
|
|
vdump $::imagedir/${::casename}_overunder_anamorph.png -stereo blend
|
|
|
|
vdump $::imagedir/${::casename}_sbs.png -stereo sbs
|