InputsWireframe#

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

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to wireframe operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.wireframe()
>>> my_mesh = dpf.MeshedRegion()
>>> op.inputs.mesh.connect(my_mesh)
>>> my_threshold = float()
>>> op.inputs.threshold.connect(my_threshold)

Overview#

mesh

Allows to connect mesh input to the operator.

threshold

Allows to connect threshold input to the operator.

Import detail#

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

Property detail#

property InputsWireframe.mesh#

Allows to connect mesh input to the operator.

Parameters:

my_mesh (MeshedRegion)

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.wireframe()
>>> op.inputs.mesh.connect(my_mesh)
>>> # or
>>> op.inputs.mesh(my_mesh)
property InputsWireframe.threshold#

Allows to connect threshold input to the operator.

Angle threshold in radian that will trigger an edge detection.

Parameters:

my_threshold (float)

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.mesh.wireframe()
>>> op.inputs.threshold.connect(my_threshold)
>>> # or
>>> op.inputs.threshold(my_threshold)