# Examples from pyvista.CubeFacesSource.names
# ===========================================

import pyvista as pv
cube_faces = pv.CubeFacesSource()

# Use three strings to set the names. Plus `'+'` and minus `'-'`
# characters are added automatically.
cube_faces.names = ['U', 'V', 'W']
cube_faces.names

# Alternatively, use six strings to set the names explicitly.
cube_faces.names = [
    'right',
    'left',
    'anterior',
    'posterior',
    'superior',
    'inferior',
]
cube_faces.names

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