We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3884d62 + dc035d4 commit 1aa34c6Copy full SHA for 1aa34c6
2 files changed
src/loadbearing_wall/__init__.py
@@ -5,7 +5,7 @@
5
The wall model is parameterizable and can represent any material
6
"""
7
8
-__version__ = "0.4.0"
+__version__ = "0.4.1"
9
10
from loadbearing_wall.wall_model import LinearWallModel
11
from loadbearing_wall import *
src/loadbearing_wall/geom_ops.py
@@ -73,7 +73,8 @@ def apply_minimum_width(
73
Load locations between zero/wall_length and half of the
74
spread_width will be linearly interpolated.
75
76
- assert spread_width <= wall_length
+ if spread_width > wall_length:
77
+ spread_width = wall_length
78
if location <= spread_width / 2:
79
projected_x0 = 0
80
projected_x1 = location + spread_width / 2
0 commit comments