OutputsWireframe#

class ansys.dpf.core.operators.mesh.wireframe.OutputsWireframe(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from wireframe operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.wireframe()
>>> # Connect inputs : op.inputs. ...
>>> result_wireframe = op.outputs.wireframe()

Overview#

wireframe

Allows to get wireframe output of the operator

Import detail#

from ansys.dpf.core.operators.mesh.wireframe import OutputsWireframe

Property detail#

property OutputsWireframe.wireframe: ansys.dpf.core.outputs.Output#

Allows to get wireframe output of the operator

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.wireframe()
>>> # Get the output from op.outputs. ...
>>> result_wireframe = op.outputs.wireframe()