ParametricPseudosphere#
- ParametricPseudosphere(**kwargs)[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.PolyData
ParametricPseudosphere surface.
Examples
Create a ParametricPseudosphere mesh.
>>> import pyvista >>> mesh = pyvista.ParametricPseudosphere() >>> mesh.plot(color='w', smooth_shading=True)