We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28aa258 commit be41474Copy full SHA for be41474
src/compas_rv/scene/thrustobject.py
@@ -93,7 +93,7 @@ def draw(self):
93
self.draw_loads()
94
if self.session.settings.drawing.thrust.show_selfweight:
95
self.draw_selfweight()
96
- if self.session.settings.drawing.thrust.show_forces:
+ if self.session.settings.drawing.thrust.show_pipes:
97
self.draw_forces()
98
99
return self.guids
src/compas_rv/settings.py
@@ -29,7 +29,7 @@ class ForceDrawingSettings(BaseModel):
29
class ThrustDrawingSettings(BaseModel):
30
show_reactions: bool = True
31
show_residuals: bool = False
32
- show_forces: bool = False
+ show_pipes: bool = False
33
show_loads: bool = False
34
show_selfweight: bool = False
35
0 commit comments