pyvista.parametric_keywords#

parametric_keywords(parametric_function, min_u=0, max_u=6.283185307179586, min_v=0.0, max_v=6.283185307179586, join_u=False, join_v=False, twist_u=False, twist_v=False, clockwise=True)[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.