pyvista.parametric_keywords

pyvista.parametric_keywords#

parametric_keywords(
parametric_function: vtkParametricFunction,
min_u: float = 0.0,
max_u: float = 6.283185307179586,
min_v: float = 0.0,
max_v: float = 6.283185307179586,
join_u: bool = False,
join_v: bool = False,
twist_u: bool = False,
twist_v: bool = False,
clockwise: bool = True,
) None[source]#

Apply keyword arguments to a parametric function.

Parameters:
parametric_functionvtk.vtkParametricFunction

Parametric function to generate mesh from.

min_ufloat, optional

The minimum u-value.

max_ufloat, optional

The maximum u-value.

min_vfloat, optional

The minimum v-value.

max_vfloat, optional

The maximum v-value.

join_ubool, optional

Joins the first triangle strip to the last one with a twist in the u direction.

join_vbool, optional

Joins the first triangle strip to the last one with a twist in the v direction.

twist_ubool, optional

Joins the first triangle strip to the last one with a twist in the u direction.

twist_vbool, optional

Joins the first triangle strip to the last one with a twist in the v direction.

clockwisebool, optional

Determines the ordering of the vertices forming the triangle strips.