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#

Allows to get wireframe output of the operator

Returns:

my_wireframe

Return type:

MeshedRegion

Examples

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