Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/load_distribution/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
loads on beams or other linear elements.
"""

__version__ = "0.1.2"
__version__ = "0.1.3"

from load_distribution.load_distribution import *
1 change: 0 additions & 1 deletion src/load_distribution/load_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ def singularities_to_polygon(los: list[Singularity], xy: bool = False) -> Polygo
# duplicate x-ordinates. The goal is to have the minimum amount to describe the
# required shape, even if that means the exact x value is omitted (because we are
# keeping the value immediately to the left and immediately to the right instead).
print(f"{x_acc=}")
x_acc = sorted(list(set(x_acc)))
x_ord_count = Counter([round(x, 6) for x in x_acc])
to_filter = []
Expand Down
Loading