# Examples from pyvista.AxesAssembly.scale
# ========================================

# Create an actor using the `pyvista.Plotter` and then change the
# scale of the actor.
import pyvista as pv
pl = pv.Plotter()
actor = pl.add_mesh(pv.Sphere())
actor.scale = (2.0, 2.0, 2.0)
actor.scale

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

