pyvista.ParametricBoy#
- ParametricBoy(zscale=None, **kwargs)[source]#
Generate Boy’s surface.
This is a model of the projective plane without singularities. It was found by Werner Boy on assignment from David Hilbert.
For further information about this surface, please consult the technical description “Parametric surfaces” in the “VTK Technical Documents” section in the VTK.org web pages.
- Parameters:
- zscale
float
,optional
The scale factor for the z-coordinate.
- **kwargs
dict
,optional
See
surface_from_para()
for additional keyword arguments.
- zscale
- Returns:
pyvista.PolyData
ParametricBoy surface.
Examples
Create a ParametricBoy mesh.
>>> import pyvista as pv >>> mesh = pv.ParametricBoy() >>> mesh.plot(color='w', smooth_shading=True)