ParametricPluckerConoid#
- ParametricPluckerConoid(n: int | None = None, **kwargs) PolyData[source]#
Generate Plucker’s conoid surface.
ParametricPluckerConoid generates Plucker’s conoid surface parametrically. Plucker’s conoid is a ruled surface, named after Julius Plucker. It is possible to set the number of folds in this class via the parameter ‘n’.
- Parameters:
- n
int,optional This is the number of folds in the conoid.
- **kwargs
dict,optional See
surface_from_para()for additional keyword arguments.
- n
- Returns:
pyvista.PolyDataParametricPluckerConoid surface.
Examples#
Download Python source code | Download Jupyter notebook
Create a ParametricPluckerConoid mesh.
>>> import pyvista as pv
>>> mesh = pv.ParametricPluckerConoid()
>>> mesh.plot(color='w', smooth_shading=True)