Fix polygonWalls for inner corners

This commit is contained in:
Florian Festi 2019-04-07 17:29:32 +02:00
parent 0b781ce7ef
commit f22be6f6d5
1 changed files with 1 additions and 1 deletions

View File

@ -1936,7 +1936,7 @@ class Boxes:
while isinstance(angle, (tuple, list)):
bottom(l)
angle, radius = angle
lr = math.radians(angle) * radius
lr = abs(math.radians(angle) * radius)
self.edges["X"](lr, h + 2*t) # XXX
top_lengths.append(l)
top_lengths.append(lr)