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.
23 lines
493 B
Plaintext
23 lines
493 B
Plaintext
puts "==========="
|
|
puts "OCC25695"
|
|
puts "Visualization, AIS_InteractiveContext - define default HilightMode"
|
|
puts "==========="
|
|
puts ""
|
|
|
|
# display a sphere
|
|
pload MODELING VISUALIZATION
|
|
psphere s 1
|
|
|
|
vclear
|
|
vinit View1
|
|
vdisplay -dispMode 1 s
|
|
vfit
|
|
|
|
# setup dynamic highlighting style
|
|
vselprops dynHighlight -dispMode -1 -transp 0.5 -material PLASTIC
|
|
vmoveto 250 250
|
|
|
|
if { [vreadpixel 250 250 rgb name] != "PALEGREEN3" } { puts "Error: wrong highlighting color" }
|
|
|
|
vdump $imagedir/${casename}.png
|