Skip to content

Commit 132cbf3

Browse files
committed
remove selfweight
1 parent 9d82487 commit 132cbf3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/compas_masonry/settings.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,15 @@
77
class FormDiagramSettings(BaseModel):
88
show_reactions: bool = Field(default=True, title="Show Reactions")
99
show_residuals: bool = Field(default=False, title="Show Residuals")
10-
show_pipes: bool = Field(default=True, title="Show Pipes")
10+
show_pipes: bool = Field(default=False, title="Show Pipes")
1111
show_loads: bool = Field(default=False, title="Show Loads")
12-
show_selfweight: bool = Field(default=False, title="Show Selfweight")
1312
show_bounds: bool = Field(default=True, title="Show Bounds")
1413
show_cracks: bool = Field(default=False, title="Show Cracks")
1514

1615
scale_reactions: float = Field(default=0.01, ge=1e-6, le=1e3, title="Scale Reactions")
1716
scale_residuals: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Residuals")
1817
scale_pipes: float = Field(default=0.01, ge=1e-6, le=1e3, title="Scale Pipes")
1918
scale_loads: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Loads")
20-
scale_selfweight: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Selfweight")
2119

2220
tol_vectors: float = Field(default=1e-3, ge=1e-6, le=1e3, title="Tolerance Vectors")
2321
tol_pipes: float = Field(default=1e-2, ge=1e-6, le=1e3, title="Tolerance Pipes")

0 commit comments

Comments
 (0)