# Examples from pyvista.lines_from_points
# =======================================

import numpy as np
import pyvista as pv
points = np.array([[0, 0, 0], [1, 0, 0], [1, 1, 0]])
poly = pv.lines_from_points(points)
poly.plot(line_width=5)

# See Plot a Lorenz Attractor for more examples using this function.

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

