Skip to content

Commit

Permalink
Inside view: increasing default maxSteps
Browse files Browse the repository at this point in the history
  • Loading branch information
unhyperbolic committed Nov 9, 2023
1 parent 6d02ded commit 1a74635
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/raytracing/inside_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def create_quality_frame(self, parent):
title='Max Steps',
row=row,
left_end=1,
right_end=100,
right_end=150,
update_function=self.widget.redraw_if_initialized)

row += 1
Expand Down
2 changes: 1 addition & 1 deletion python/raytracing/raytracing_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def __init__(self,
has_weights = bool(weights or cohomology_class)

self.ui_uniform_dict = {
'maxSteps' : ['int', 99 if has_weights else 20],
'maxSteps' : ['int', 99 if has_weights else 40],
'maxDist' : ['float', 6.5 if has_weights else 17.0],
'subpixelCount': ['int', 1],
'edgeThickness' : ['float', 0.0000001],
Expand Down

0 comments on commit 1a74635

Please sign in to comment.