# Examples from pyvista.Superquadric
# ==================================

import pyvista as pv
superquadric = pv.Superquadric(
    scale=(3.0, 1.0, 0.5),
    phi_roundness=0.1,
    theta_roundness=0.5,
)
superquadric.plot(show_edges=True)

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

