[ create a new paste ] login | about

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

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


Output:
1
Gravity Fun at TestTubeGames: [ForceG: -2,Qual: 1,Zoom: 1,xSet: 0,ySet: 0], [x0: 0,y0: 0,vx: 1.0,vy: 0.0,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.978147600734,vy: 0.207911690818,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.913545457643,vy: 0.406736643076,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.809016994375,vy: 0.587785252292,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.669130606359,vy: 0.743144825477,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.5,vy: 0.866025403784,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.309016994375,vy: 0.951056516295,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.104528463268,vy: 0.994521895368,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.104528463268,vy: 0.994521895368,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.309016994375,vy: 0.951056516295,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.5,vy: 0.866025403784,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.669130606359,vy: 0.743144825477,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.809016994375,vy: 0.587785252292,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.913545457643,vy: 0.406736643076,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.978147600734,vy: 0.207911690818,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -1.0,vy: 5.66549845232e-16,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.978147600734,vy: -0.207911690818,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.913545457643,vy: -0.406736643076,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.809016994375,vy: -0.587785252292,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.669130606359,vy: -0.743144825477,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.5,vy: -0.866025403784,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.309016994375,vy: -0.951056516295,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: -0.104528463268,vy: -0.994521895368,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.104528463268,vy: -0.994521895368,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.309016994375,vy: -0.951056516295,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.5,vy: -0.866025403784,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.669130606359,vy: -0.743144825477,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.809016994375,vy: -0.587785252292,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.913545457643,vy: -0.406736643076,t0: 0,who: 3,m: 0], [x0: 0,y0: 0,vx: 0.978147600734,vy: -0.207911690818,t0: 0,who: 3,m: 0]


Create a new paste based on this one


Comments: