mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Before the patch, if the values of the isReversedX/Y/Z variables were set to false, then the WorldView matrix did not change and local transformation was not applied, which caused errors. In order to correctly set the local transformation in case the text does not have its own attach point, the local transformation is set in OpenGl_Text, and the ModelWorld matrix is changed in OpenGl_Flipper, instead of the WorldView matrix. In this case, local transformation will always be applied. bugs/vis/bug31193: test case added
19 lines
554 B
Plaintext
19 lines
554 B
Plaintext
puts "============="
|
|
puts "0031193: Visualization - OpenGl_Flipping wrong text position if local transformation set"
|
|
puts "============="
|
|
|
|
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
|
|
|
vinit View1
|
|
vtrihedron trihedr
|
|
|
|
vdrawtext Text "First line\nSecond line" -pos 10 0 0 -color red -plane 1 0 0 0 1 0 -flipping -halign center -valign top -height 50 -font SansFont
|
|
|
|
vright
|
|
vrotate 0 3.14 0
|
|
vlocation Text -rotate 0 0 0 0 1 0 180
|
|
|
|
if {[vreadpixel 67 126 rgb name] == "RED"} { puts "ERROR: the text is not flipped" }
|
|
|
|
vdump $imagedir/${casename}.png
|