mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
black format
This commit is contained in:
@@ -525,7 +525,6 @@ class DrawPolylineWall(bpy.types.Operator):
|
||||
for wall1, wall2 in zip(walls[:-1], walls[1:]):
|
||||
print(wall1["obj"], wall2["obj"])
|
||||
DumbWallJoiner().join_V(wall1["obj"], wall2["obj"])
|
||||
|
||||
|
||||
def modal(self, context, event):
|
||||
|
||||
@@ -834,7 +833,7 @@ class DumbWallGenerator:
|
||||
last_vec = Vector((polyline_data[-1].x, polyline_data[-1].y, polyline_data[-1].z))
|
||||
if first_vec == last_vec:
|
||||
is_polyline_closed = True
|
||||
|
||||
|
||||
walls = []
|
||||
for i in range(len(polyline_data) - 1):
|
||||
vec1 = Vector((polyline_data[i].x, polyline_data[i].y, polyline_data[i].z))
|
||||
|
||||
Reference in New Issue
Block a user