Oasys.D3PLOT.View class¶
Constants¶
Show¶
plotting mode¶
Static methods¶
- classmethod View.Ac()¶
Autoscales the view
- Returns:
No return value
- Return type:
None
Example
To autoscale
Oasys.D3PLOT.View.Ac()
- classmethod View.Ct()¶
Does a contour plot
- Returns:
No return value
- Return type:
None
Example
To do a contour plot
Oasys.D3PLOT.View.Ct()
- classmethod View.Hi()¶
Does a Hidden line plot
- Returns:
No return value
- Return type:
None
Example
To do a hidden line plot
Oasys.D3PLOT.View.Hi()
- classmethod View.Li()¶
Does a line (wireframe) plot
- Returns:
No return value
- Return type:
None
Example
To do a line plot
Oasys.D3PLOT.View.Li()
- classmethod View.Redraw()¶
Redraws the plot using the current plot mode
- Returns:
No return value
- Return type:
None
Example
To redraw
Oasys.D3PLOT.View.Redraw()
- classmethod View.Sh()¶
Does a shaded plot
- Returns:
No return value
- Return type:
None
Example
To do a shaded plot
Oasys.D3PLOT.View.Sh()
- classmethod View.Show(view_type)¶
Redraws using one of the standard views
- Parameters:
view_type (constant) – The view to show. Can be +/-
View.XY
, +/-View.YZ
, +/-View.XZ
or +/-View.ISO
- Returns:
No return value
- Return type:
None
Example
To do an isometric view from the negative direction:
Oasys.D3PLOT.View.Show(-View.ISO)
- classmethod View.Si()¶
Does a shaded image contour plot
- Returns:
No return value
- Return type:
None
Example
To do a shaded image contour plot
Oasys.D3PLOT.View.Si()
- classmethod View.Vec()¶
Does a vector plot
- Returns:
No return value
- Return type:
None
Example
To do a vector plot
Oasys.D3PLOT.View.Vec()