mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The patch fixes transformation persistence for various set of GCC compilers. 1) Optimized template-specialized operator /= for division (causes bugs) of NCollection_Vec4 was replaced with non-specialized version. 2) NCollection_Vec4::xyz() is not used since compiler uses modifiable-reference returning version, which invokes warning of possible strict-aliasing rules violation and leads to incorrect behavior of the reference.
15 lines
446 B
Plaintext
15 lines
446 B
Plaintext
puts "============"
|
|
puts "OCC28361 Visualization, TKV3d - buggy behavior of Transformation Persistence compiled on several Linux platforms in optimized mode"
|
|
puts "============"
|
|
puts ""
|
|
|
|
vclear
|
|
vinit View1
|
|
pload MODELING VISUALIZATION
|
|
box b 10 10 10
|
|
vdisplay b -trsfPers zoomRotate -trsfPersPos 90 90 90
|
|
vmoveto 266 164
|
|
if { [vreadpixel 256 174 rgb name] != "CYAN1" } { puts "Error: the box is not highlighted" }
|
|
|
|
vdump $imagedir/${casename}.png
|