[ create a new paste ] login | about

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

Python, pasted on Jan 30:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import math
output = "Gravity Fun at TestTubeGames: [ForceG: -2,Qual: 1,Zoom: 1,xSet: 0,ySet: 0]"
asteroids = 15
mass = 1000
radius = 100
angleoffset = 15
actualangle = (-angleoffset+90) * 2*math.pi/360
vel = math.sqrt(mass/radius)
period = 2*math.pi*math.sqrt(radius**3/mass)
output = output + ", [x0: 0,y0: 0,vx: 0,vy: 0,t0: 0,who: 1,m: " + str(mass) + "]"
for a in range(asteroids):
 angle = 2*math.pi*a/asteroids
 output = output + ", [x0: " + str(radius * math.cos(angle)) + ",y0: " + str(radius * math.sin(angle)) + ",vx: " + str(vel * math.cos(angle + actualangle)) + ",vy: " + str(vel * math.sin(angle + actualangle)) + ",t0: " + str(period * a / asteroids) + ",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: 0,vy: 0,t0: 0,who: 1,m: 1000], [x0: 100.0,y0: 0.0,vx: 0.818457684354,vy: 3.05452566185,t0: 0.0,who: 3,m: 0], [x0: 91.3545457643,y0: 40.6736643076,vx: -0.494689214077,vy: 3.12334477467,t0: 13.2461176877,who: 3,m: 0], [x0: 66.9130606359,y0: 74.3144825477,vx: -1.72229985328,vy: 2.65210920125,t0: 26.4922353755,who: 3,m: 0], [x0: 30.9016994375,y0: 95.1056516295,vx: -2.65210920125,vy: 1.72229985328,t0: 39.7383530632,who: 3,m: 0], [x0: -10.4528463268,y0: 99.4521895368,vx: -3.12334477467,vy: 0.494689214077,t0: 52.9844707509,who: 3,m: 0], [x0: -50.0,y0: 86.6025403784,vx: -3.05452566185,vy: -0.818457684354,t0: 66.2305884386,who: 3,m: 0], [x0: -80.9016994375,y0: 58.7785252292,vx: -2.45755131261,vy: -1.99008581371,t0: 79.4767061264,who: 3,m: 0], [x0: -97.8147600734,y0: 20.7911690818,vx: -1.43564401526,vy: -2.81761002651,t0: 92.7228238141,who: 3,m: 0], [x0: -97.8147600734,y0: -20.7911690818,vx: -0.165500825251,vy: -3.15794386854,t0: 105.968941502,who: 3,m: 0], [x0: -80.9016994375,y0: -58.7785252292,vx: 1.13325896097,vy: -2.95224052668,t0: 119.21505919,who: 3,m: 0], [x0: -50.0,y0: -86.6025403784,vx: 2.2360679775,vy: -2.2360679775,t0: 132.461176877,who: 3,m: 0], [x0: -10.4528463268,y0: -99.4521895368,vx: 2.95224052668,vy: -1.13325896097,t0: 145.707294565,who: 3,m: 0], [x0: 30.9016994375,y0: -95.1056516295,vx: 3.15794386854,vy: 0.165500825251,t0: 158.953412253,who: 3,m: 0], [x0: 66.9130606359,y0: -74.3144825477,vx: 2.81761002651,vy: 1.43564401526,t0: 172.19952994,who: 3,m: 0], [x0: 91.3545457643,y0: -40.6736643076,vx: 1.99008581371,vy: 2.45755131261,t0: 185.445647628,who: 3,m: 0]


Create a new paste based on this one


Comments: