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,
 Apply keyword arguments to a parametric function.
- Parameters:
 - parametric_functionvtkParametricFunction
 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.