Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions brainrender/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,9 @@ def render(
self.remove(*self.get_actors(br_class="silhouette"))
print(
f"[{teal}]Your scene is ready for rendering, use:\n",
Syntax("from vedo import show", lexer="python"),
Syntax("vedo.show(*scene.renderables)", lexer="python"),
Syntax("from vedo import Plotter", lexer="python"),
Syntax("plt = Plotter()", lexer="python"),
Syntax("plt.show(*scene.renderables)", lexer="python"),
sep="\n",
)
else: # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion brainrender/settings.py
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change in this file should be reverted as it's technically not part of this PR

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
ROOT_ALPHA = 0.2 # transparency of the overall brain model's actor'
SCREENSHOT_SCALE = 1
SHADER_STYLE = "cartoon" # affects the look of rendered brain regions: [metallic, plastic, shiny, glossy, cartoon]
SHOW_AXES = True
SHOW_AXES = False
WHOLE_SCREEN = False # If true render window is full screen
OFFSCREEN = False
NUM_LOGS_KEPT = 100
Loading