mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
23 lines
528 B
Plaintext
23 lines
528 B
Plaintext
puts "========"
|
|
puts "0032073: Visualization - implement interface to change myToFlipOutput of OpenGl_View"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
pcone c 10 0 10
|
|
vinit View1
|
|
vdisplay c -dispmode 1
|
|
vcamera -ortho
|
|
vfront
|
|
vfit
|
|
|
|
if { [vreadpixel 100 250 -rgb -name] != "DARKGOLDENROD" } { puts "Error: view is flipped" }
|
|
|
|
vdump $imagedir/${casename}.png
|
|
|
|
vrenderparams -flip on
|
|
|
|
if { [vreadpixel 100 250 -rgb -name] != "DARKGOLDENROD" } { puts "Error: view is not flipped" }
|
|
|
|
vdump $imagedir/${casename}_flipped.png
|