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,
Apply keyword arguments to a parametric function.
- Parameters:
- parametric_function
vtk.vtkParametricFunction
Parametric function to generate mesh from.
- min_u
float
,optional
The minimum u-value.
- max_u
float
,optional
The maximum u-value.
- min_v
float
,optional
The minimum v-value.
- max_v
float
,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.
- parametric_function