We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93f4cae commit 6783f17Copy full SHA for 6783f17
1 file changed
app.py
@@ -24,16 +24,14 @@
24
25
print("Read objs...")
26
27
-plotter.add_axes()
28
-plotter.enable_mesh_picking(show_message=True)
+plotter = pv.Plotter()
+
29
+from neuromlmodel import add_neuroml_model
30
-sphere = pv.Sphere(end_theta=90)
31
-plotter.add_mesh(sphere)
+add_neuroml_model(plotter)
32
+plotter.set_background("white")
33
+plotter.add_axes()
34
-## Final touches
-plotter.view_isometric()
35
-# plotter.add_scalar_bar()
36
-plotter.background_color = "white"
37
38
print("Created the scene...")
39
0 commit comments