# Examples from pyvista.Tube
# ==========================

# Create a tube between `(0, 0, 0)` and `(0, 0, 1)`.
import pyvista as pv
mesh = pv.Tube(pointa=(0, 0, 0), pointb=(0, 0, 1))
mesh.plot()

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

