# Examples from pyvista.Pyramid
# =============================

import pyvista as pv
pointa = [1.0, 1.0, 0.0]
pointb = [-1.0, 1.0, 0.0]
pointc = [-1.0, -1.0, 0.0]
pointd = [1.0, -1.0, 0.0]
pointe = [0.0, 0.0, 1.608]
pyramid = pv.Pyramid([pointa, pointb, pointc, pointd, pointe])
pyramid.plot(show_edges=True, line_width=5)

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

