# Examples from pyvista.Actor.line_style
# ======================================

# Dash the lines of a circle.
import pyvista as pv
circle = pv.Circle(resolution=200).extract_all_edges()
pl = pv.Plotter()
actor = pl.add_mesh(circle, color='black', line_width=4, line_style='--')
pl.show(cpos='xy')

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