EdgDisplay ()

Set the options for edge "Display."

Usage

EdgDisplay( model = None,
                     display = None,
                     display_type = None,
                     transparency = None,
                     transparency_level = None,
                     color = None )

Parameters

model (string)
The name of the model entity.
display (boolean)
A flag for turning on/off the display of edge. If this flag is True the edge will be displayed.
display_type (string)
Type of the edge display (Solid, Outline, Wireframe).
transparency (boolean)
A flag for turning on/off the transparency of edge.
transparency_level (real)
Level of the edge transparency.
color (list)
The color of the edge.

Return Value

None

Errors

The model must be one of the defined models.

The display_type and transparency_level must be defined.

The color must be a List of three numbers between zero and one.

Description

This routine sets the options for edge "Display" is selected. Display options are given by display, display_type, transparency, transparency_level and color. For example,
EdgDisplay( model='Top',color = [1.0,0,0], transparency = True )