mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Graphic3d_ClipPlane - Graphic3d_AspectFillArea3d is now stored as class field. OpenGl_CappingAlgo::RenderCapping() now handles special mode preserving material from rendered object. MeshVS_ElementalColorPrsBuilder::Build() now creates single primitives group for triangles, thus Closed flag is correctly applied. Redundant methods OpenGl_Structure::DrawGroups() and ::renderClosedGeometry() have been removed. Draw Harness, ViewerTest - vaspects now preserves display mode and location when assigning sub-shape aspects. The syntax of command vclipplane has been revised (preserving compatibility with old syntax): - Use "-param" style syntax for all arguments. - Eliminate redundant arguments "change", "view", "object". - Allow passing multiple parameters withing single call. - Do not require "create" command - create new plane implicitly. - "maxplanes" argument does not require view name anymore. - "delete" does not throws TCL exception for non-existing plane. - "view" argument without list now applies to active view. - Handle * and ALL withing "delete" to remove all defined planes. update test case bugs/vis/bug26028
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
puts "============="
|
|
puts "Drawing mesh as closed object."
|
|
puts "============="
|
|
puts ""
|
|
|
|
pload XDE
|
|
|
|
set aMeshFile [locate_data_file sh1.stl]
|
|
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
|
|
meshfromstl m0 "$aMeshFile"
|
|
vsetdispmode m0 2
|
|
|
|
vsetlocation -noupdate m0 -100 0 0
|
|
meshfromstl m1 "$aMeshFile"
|
|
meshcolors m1 elem1 0
|
|
vsetlocation -noupdate m1 0 0 0
|
|
|
|
meshfromstl m2 "$aMeshFile"
|
|
meshcolors m2 elem2 0
|
|
vsetlocation -noupdate m2 100 0 0
|
|
|
|
meshfromstl m3 "$aMeshFile"
|
|
meshcolors m3 nodal 1
|
|
vsetlocation -noupdate m3 0 0 100
|
|
|
|
meshfromstl m4 "$aMeshFile"
|
|
meshcolors m4 nodaltex 1
|
|
vsetlocation -noupdate m4 100 0 100
|
|
vfit
|
|
|
|
vclipplane create p
|
|
vclipplane change p equation 0 1 0 0
|
|
vclipplane change p capping on
|
|
vclipplane change p capping color 0.9 0.9 0.9
|
|
vclipplane set p view Driver1/Viewer1/View1
|
|
|
|
for {set i 0} {$i < 5} {incr i} { meshclosed m$i 0 }
|
|
vdump ${imagedir}/${casename}_open.png
|
|
|
|
for {set i 0} {$i < 5} {incr i} { meshclosed m$i 1 }
|
|
set aColor0 [vreadpixel 125 200 rgb name]
|
|
set aColor1 [vreadpixel 225 300 rgb name]
|
|
set aColor2 [vreadpixel 325 325 rgb name]
|
|
set aColor3 [vreadpixel 225 150 rgb name]
|
|
set aColor4 [vreadpixel 325 200 rgb name]
|
|
|
|
# note that aColor2 is not expected to be capped
|
|
if { "$aColor0" != "GRAY61" || "$aColor1" != "GRAY61" || "$aColor2" == "GRAY61" || "$aColor3" != "GRAY61" || "$aColor4" != "GRAY61" } {
|
|
puts "Error: capping color does not match"
|
|
}
|
|
|
|
vdump ${imagedir}/${casename}_closed.png
|