Skip to content

Commit

Permalink
scene.redraw() => scene.draw()
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Jan 30, 2024
1 parent 6d2a2c5 commit 9c14954
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compas_timber/ghpython/components/CT_Assembly/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ def RunScript(self, Beams, JointRules, Features, MaxDistance, CreateGeometry):
if debug_info.has_errors:
self.AddRuntimeMessage(Warning, "Error found during joint creation. See DebugInfo output for details.")

Geometry = scene.redraw()
Geometry = scene.draw()
return Assembly, Geometry, debug_info
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ def RunScript(self, Centerline, ZVector, Width, Height, Category, updateRefObj):
Beam.append(beam)
scene.add(beam.blank)

Blank = scene.redraw()
Blank = scene.draw()

return Beam, Blank

0 comments on commit 9c14954

Please sign in to comment.