display()
Set\get type of an actor.
Usage
actor.display( displayType = None )
Parameters
- displayType (string)
- Display type. Valid values are outline, solid, wireframe, contour, velocity_vector and none.
Return Value
String
If displayType = None, the current display type will be returned, or else None.
Errors
displayType must be valid.
Description
fan = vis.getSrfActor( "impeller" )
fan.display( 'solid_wire' )
or:
fanDisType = fan.display( )