mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
AIS_InteractiveContext - removed the following unused properties: - PreSelectionColor(), DefaultColor(), WasCurrentTouched(), ZDetection(). AIS_InteractiveObject - removed unused property SelectionPriority(). Prs3d_Drawer - removed properties HighlightStyle() and SelectionStyle(). Graphic3d_HighlightStyle has been superseded by Prs3d_Drawer inheriting from new class Graphic3d_PresentationAttributes. Graphic3d_PresentationAttributes (as Graphic3d_HighlightStyle replacement) has been extended with new properties: - ZLayer() defining Z-Layer for highlighting presentation. - DisplayMode() defining display mode for highlighting. StdSelect_BRepSelectionTool methods have been corrected to take SelectMgr_EntityOwner instead of StdSelect_BRepOwner. StdSelect_Shape - duplicated field myDrawer has been dropped. AIS_InteractiveObject - myDrawer->Color() is now used instead of myOwnColor, myDrawer->Transparency() instead of myTransparency and myDrawer->ZLayer() instead of myZLayer. PrsMgr_PresentationManager::Unhighlight() now unhighlight all modes. The method taking Mode as argument has been marked deprecated. New enumeration Prs3d_TypeOfHighlight has been introduced defining different highlight types. AIS_InteractiveObject::HighlightStyle() now takes enumeration argument and defines different styles for Global and Local selection. ComesFromDecomposition() property has been moved from StdSelect_BRepOwner to SelectMgr_EntityOwner.
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
puts "============"
|
|
puts "OCC27818_1"
|
|
puts "============"
|
|
puts ""
|
|
####################################################################################
|
|
# Visualization - provide an interface to define highlight presentation properties:
|
|
# test change of highlight properties for whole interactive context
|
|
####################################################################################
|
|
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
box b 10 20 30
|
|
pcone p 15 0 40
|
|
|
|
vinit
|
|
vclear
|
|
|
|
vdisplay b -dispMode 1
|
|
vdisplay p -dispMode 1
|
|
vsetcolor b RED
|
|
vsetcolor p GREEN
|
|
|
|
vviewparams -scale 17.8 -proj 0.9 -0.3 0.3
|
|
vviewparams -up -0.2 0.4 0.9 -at 1.99 2.4 20.9
|
|
vviewparams -eye 56.1 -17.7 39.4
|
|
|
|
vselprops dynHighlight -transp 0.1 -color PALEGREEN2 -dispMode 1
|
|
|
|
vmoveto 167 263
|
|
set aPixelColor [vreadpixel 167 263 name rgba]
|
|
set aTransp [lindex [split $aPixelColor { }] 1]
|
|
if { $aTransp == 1 } {
|
|
puts "Error: highlighting of a cone is not transparent!"
|
|
}
|
|
|
|
vmoveto 285 212
|
|
set aPixelColor [vreadpixel 285 212 name rgba]
|
|
set aTransp [lindex [split $aPixelColor { }] 1]
|
|
if { $aTransp == 1 } {
|
|
puts "Error: highlighting of a box is not transparent!"
|
|
}
|
|
|
|
vdump $imagedir/${casename}.png
|