This commit is contained in:
Will McGugan 2020-10-16 12:16:20 +01:00
parent 447ed72fe3
commit e32a715728
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ SIZE = 40
for row in range(SIZE):
y = (row / SIZE) * 2 - 1
x = math.sqrt(1 - y * y)
bar = Bar(1.0, width=SIZE * 2, begin=1 - x, end=x, color="red")
bar = Bar(1, width=SIZE * 2, begin=1 - x, end=x, color="red")
print(bar)