Skip to content

Commit 99c5c60

Browse files
committed
Test
1 parent 5ad8c20 commit 99c5c60

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

app.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
start_xvfb()
1919
st.session_state.IS_XVFB_RUNNING = True
2020

21-
st.title("OpenWorm 3D Viewer...")
21+
st.title("OpenWorm 3D Viewer.")
2222
st.markdown(
23-
"This is a 3D viewer for a number of OpenWorm _C. elegans_ models and datasets. It uses PyVista for rendering."
23+
"This is a 3D viewer for a number of OpenWorm _C. elegans_ models and datasets. It uses PyVista for rendering..."
2424
)
2525

2626

@@ -32,13 +32,15 @@
3232
plotter = pv.Plotter()
3333

3434

35-
add_neuroml_model(plotter, somas_only=True)
35+
#add_neuroml_model(plotter, somas_only=True)
3636

3737
sphere = pv.Sphere(end_theta=90)
3838
plotter.add_mesh(sphere)
3939
plotter.set_background("white")
4040
plotter.add_axes()
4141

42+
plotter.set_viewup([0, 10, 0])
43+
4244

4345
print("Created the scene...")
4446

0 commit comments

Comments
 (0)