pyvista.ParametricPseudosphere#
- ParametricPseudosphere(**kwargs) PolyData[source]#
 Generate a pseudosphere.
ParametricPseudosphere generates a parametric pseudosphere. The pseudosphere is generated as a surface of revolution of the tractrix about it’s asymptote, and is a surface of constant negative Gaussian curvature.
- Parameters:
 - **kwargs
dict,optional See
surface_from_para()for additional keyword arguments.
- **kwargs
 - Returns:
 pyvista.PolyDataParametricPseudosphere surface.
Examples
Create a ParametricPseudosphere mesh.
>>> import pyvista as pv >>> mesh = pv.ParametricPseudosphere() >>> mesh.plot(color='w', smooth_shading=True)