[ create a new paste ] login | about

Link: http://codepad.org/D9pCMTv2    [ raw code | output | fork ]

Python, pasted on Mar 6:
1
2
3
4
5
6
7
8
import math
output = "Gravity Fun at TestTubeGames: [ForceG: -2,Qual: 1,Zoom: 1,xSet: 0,ySet: 0]"
stars = 30
mass = -100
dist = 200
for a in range(stars):
 output = output + ", [x0: " + str(dist * math.cos(2*math.pi*a/stars)) + ",y0: " + str(dist * math.sin(2*math.pi*a/stars)) + ",vx: 0,vy: 0,t0: 0,who: 1,m: " + str(mass) + ",c: 1]"
print output


Output:
1
Gravity Fun at TestTubeGames: [ForceG: -2,Qual: 1,Zoom: 1,xSet: 0,ySet: 0], [x0: 200.0,y0: 0.0,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 195.629520147,y0: 41.5823381636,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 182.709091529,y0: 81.3473286152,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 161.803398875,y0: 117.557050458,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 133.826121272,y0: 148.628965095,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 100.0,y0: 173.205080757,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 61.803398875,y0: 190.211303259,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 20.9056926535,y0: 198.904379074,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -20.9056926535,y0: 198.904379074,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -61.803398875,y0: 190.211303259,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -100.0,y0: 173.205080757,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -133.826121272,y0: 148.628965095,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -161.803398875,y0: 117.557050458,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -182.709091529,y0: 81.3473286152,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -195.629520147,y0: 41.5823381636,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -200.0,y0: 1.13309969046e-13,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -195.629520147,y0: -41.5823381636,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -182.709091529,y0: -81.3473286152,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -161.803398875,y0: -117.557050458,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -133.826121272,y0: -148.628965095,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -100.0,y0: -173.205080757,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -61.803398875,y0: -190.211303259,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: -20.9056926535,y0: -198.904379074,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 20.9056926535,y0: -198.904379074,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 61.803398875,y0: -190.211303259,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 100.0,y0: -173.205080757,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 133.826121272,y0: -148.628965095,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 161.803398875,y0: -117.557050458,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 182.709091529,y0: -81.3473286152,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1], [x0: 195.629520147,y0: -41.5823381636,vx: 0,vy: 0,t0: 0,who: 1,m: -100,c: 1]


Create a new paste based on this one


Comments: