mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Graphic3d_Buffer can be now optionally initialized as non-interleaved array of vertex attributes and provides an interface to invalidate buffer sub-range tracked by OpenGl_PrimitiveArray.
19 lines
785 B
Plaintext
19 lines
785 B
Plaintext
puts "============="
|
|
puts "0030076: Visualization, TKV3d - API to update certain vertex attribute(s) without recomputing a presentation"
|
|
puts "============="
|
|
|
|
set c1 {c 1 0 0}
|
|
set c2 {c 0 0 1}
|
|
|
|
pload VISUALIZATION
|
|
|
|
vclear
|
|
vinit View1
|
|
vdrawparray a triangles -deinterleaved -mutable v 10 0 0 {*}$c1 v 11 0 0 {*}$c1 v 11 1 0 {*}$c1 v 11 1 0 {*}$c2 v 10 1 0 {*}$c2 v 10 0 0 {*}$c2
|
|
vfit
|
|
vdump $imagedir/${casename}_1.png
|
|
vdrawparray a -patch triangles -deinterleaved -mutable v 10 0 0 {*}$c2 v 11 0 0 {*}$c2 v 11 1 0 {*}$c2 v 11 1 0 {*}$c1 v 10 1 0 {*}$c1 v 10 0 0 {*}$c1
|
|
if { [vreadpixel 200 150 rgb name] != "RED" } { puts "Error: array was not updated" }
|
|
if { [vreadpixel 200 250 rgb name] != "BLUE1" } { puts "Error: array was not updated" }
|
|
vdump $imagedir/${casename}_2.png
|