lineWidth()

Set\get line width of an actor.

Usage

actor.lineWidth( width = None )

Parameters

width (integer)
Line width of an actor.

Return Value

Integer

If width = None, the current width value will be returned, or else None.

Errors

width must be integer.

Description

This routine sets\gets the line width value of an actor. If width is None, the current line width value will be returned. For example,
fan = vis.getSrfActor( "impeller" )
fan.lineWidth( 3 )
or :
fanLineWdt = fan.lineWidth( )