1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
"""How to use PyVista UI template.
This example demonstrates how to use ``plotter_ui`` to add a PyVista
``Plotter`` to a UI with scene controls and standard UI features.
"""
from __future__ import annotations
import matplotlib.pyplot as plt
from trame.app import get_server
from trame.ui.vuetify3 import SinglePageLayout
from trame.widgets import vuetify3
import pyvista as pv
from pyvista import examples
from pyvista.trame.ui import plotter_ui
pv.OFF_SCREEN = True
server = get_server(client_type='vue3')
state, ctrl = server.state, server.controller
state.trame__title = 'PyVista UI Template'
# -----------------------------------------------------------------------------
mesh = examples.load_random_hills()
plotter = pv.Plotter()
actor = plotter.add_mesh(mesh, cmap='viridis')
@state.change('cmap')
def update_cmap(cmap='viridis', **kwargs): # noqa: ARG001
actor.mapper.lookup_table.cmap = cmap
ctrl.view_update()
# -----------------------------------------------------------------------------
# GUI
# -----------------------------------------------------------------------------
with SinglePageLayout(server) as layout:
layout.icon.click = ctrl.view_reset_camera
layout.title.set_text('PyVista Colormaps')
with layout.toolbar:
vuetify3.VSpacer()
vuetify3.VSelect(
label='Color map',
v_model=('cmap', 'viridis'),
items=('array_list', plt.colormaps()),
hide_details=True,
density='compact',
outlined=True,
classes='pt-1 ml-2',
style='max-width: 250px',
)
with layout.content:
# Use PyVista UI template for Plotters
view = plotter_ui(plotter)
ctrl.view_update = view.update
# hide footer
layout.footer.hide()
server.start()
|