mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Graphic3d_Camera has been revised to store camera Direction from Eye explicitly and Distance to Center instead of auxiliary Center point. This allows setting camera Distance to 0 (for flat objects) without side effects like broken FitAll, wobbling on rotating.
21 lines
561 B
Plaintext
21 lines
561 B
Plaintext
puts "============"
|
|
puts "0029837: Visualization, Graphic3d_Camera - Fit All operation works incorrectly on flat object"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload VISUALIZATION
|
|
vclear
|
|
vinit View1
|
|
vtop
|
|
vpoint p1 0 0 4000
|
|
vpoint p2 200 0 4000
|
|
vaspects p1 -setColor RED
|
|
vaspects p2 -setColor GREEN
|
|
vaspects p1 p2 -setMarkerType . -setMarkerSize 20
|
|
vsegment s p1 p2
|
|
vfit
|
|
if { [vreadpixel 5 200 -rgb -name] != "RED" } { puts "Error: p1 not found" }
|
|
if { [vreadpixel 402 200 -rgb -name] != "GREEN" } { puts "Error: p2 not found" }
|
|
|
|
vdump $::imagedir/${::casename}.png
|