# Examples from pyvista.MultipleLines
# ===================================

# Create a multiple lines between `(0, 0, 0)`, `(1, 1, 1)` and `(0, 0, 1)`.
import pyvista as pv
mesh = pv.MultipleLines(points=[[0, 0, 0], [1, 1, 1], [0, 0, 1]])
pl = pv.Plotter()
actor = pl.add_mesh(mesh, color='k', line_width=10)
pl.camera.azimuth = 45
pl.camera.zoom(0.8)
pl.show()

# See Create Connected Lines from Points and Color Several Lines
# for more examples.

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

