-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPi_circle.py
More file actions
25 lines (23 loc) · 900 Bytes
/
Copy pathPi_circle.py
File metadata and controls
25 lines (23 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## {{{ http://code.activestate.com/recipes/578130/ (r3)
def pi(places=10):
"Computes pi to given number of decimal places"
# 3 + 3*(1/24) + 3*(1/24)*(9/80) + 3*(1/24)*(9/80)*(25/168) + ...
extra = 8
one = 10 ** (places+extra)
t, c, n, na, d, da = 3*one, 3*one, 1, 0, 0, 24
while t > 1:
n, na, d, da = n+na, na+8, d+da, da+32
t = t * n // d
c += t
return c // (10 ** extra)
def picirc(radius, screen_width=90, aspect_ratio=5):
"Display the digit of pi in a circle of given radius"
pi_str = repr(pi(int(2 * radius ** 2 * aspect_ratio)))
pos = 0
for i in range(2 * radius):
cols = int(0.5 + aspect_ratio * (radius**2 - (radius-(i+0.5))**2) ** 0.5)
print(pi_str[pos:pos+cols].center(screen_width))
pos += cols
if __name__ == '__main__':
picirc(16)
## end of http://code.activestate.com/recipes/578130/ }}}