We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad8c20 commit 99c5c60Copy full SHA for 99c5c60
1 file changed
app.py
@@ -18,9 +18,9 @@
18
start_xvfb()
19
st.session_state.IS_XVFB_RUNNING = True
20
21
- st.title("OpenWorm 3D Viewer...")
+ st.title("OpenWorm 3D Viewer.")
22
st.markdown(
23
- "This is a 3D viewer for a number of OpenWorm _C. elegans_ models and datasets. It uses PyVista for rendering."
+ "This is a 3D viewer for a number of OpenWorm _C. elegans_ models and datasets. It uses PyVista for rendering..."
24
)
25
26
@@ -32,13 +32,15 @@
32
plotter = pv.Plotter()
33
34
35
-add_neuroml_model(plotter, somas_only=True)
+#add_neuroml_model(plotter, somas_only=True)
36
37
sphere = pv.Sphere(end_theta=90)
38
plotter.add_mesh(sphere)
39
plotter.set_background("white")
40
plotter.add_axes()
41
42
+plotter.set_viewup([0, 10, 0])
43
+
44
45
print("Created the scene...")
46
0 commit comments