ParaView/PythonRecipes/HighlighThickness
From KitwarePublic
< ParaView | PythonRecipes
Jump to navigationJump to search
Revision as of 18:35, 16 October 2018 by JPouderoux (talk | contribs)
<source lang="python"> dp = GetDisplayProperties(FindSource("Sphere1")) # note there must be a space around the '=' dp.SelectionLineWidth = 5 </source>
Back to ParaView/PythonRecipes.