This commit is contained in:
Andrej730
2024-12-27 12:58:19 +05:00
parent b9423b191a
commit 5ef10073cd
2 changed files with 21 additions and 15 deletions
+1 -1
View File
@@ -620,7 +620,7 @@ class DumbWallGenerator:
walls = []
for i in range(len(polyline_points) - 1):
vec1 = polyline_points[i]
vec2 = polyline_points[i+1]
vec2 = polyline_points[i + 1]
coords = (vec1, vec2)
walls.append(self.create_wall_from_2_points(coords))
return walls