Arch: Small bugfix in Axis position

This commit is contained in:
Yorik van Havre
2018-03-16 17:21:14 -03:00
parent 597dbf6094
commit 8fdce5a9cc

View File

@@ -61,7 +61,10 @@ def makeAxis(num=5,size=1000,name="Axes"):
dist = []
angles = []
for i in range(num):
dist.append(float(size))
if i == 0:
dist.append(0)
else:
dist.append(float(size))
angles.append(float(0))
obj.Distances = dist
obj.Angles = angles