[ create a new paste ] login | about

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

Python, pasted on Aug 4:
1
2
3
4
5
6
7
8
9
10
import math
sats = 30
w = 5
output = "Gravity Fun at TestTubeGames.com: [ForceGr: r^(-2),Qual: 1,Zoom: 1,xSet: 0,ySet: 0], [x0: 0,y0: 0,vx: 0,vy: 0,t0: 0,who: 2,m: 1000,c: 2,w:" + str(w) + "]"
period = 360.0 / w
dist = ((period / (2 * math.pi))**2*1000)**(1.0/3.0)
vel = (1000.0 / dist)**(.5)
for a in range(sats):
 output = output + ", [x0: " + str(dist * math.cos(2*math.pi*a/sats)) + ",y0: " + str(dist * math.sin(2*math.pi*a/sats)) + ",vx: " + str(vel * -math.sin(2*math.pi*a/sats)) + ",vy: " + str(vel * math.cos(2*math.pi*a/sats)) + ",t0: 0,who: 3,m: 0,c: 5]"
print output


Output:
1
Gravity Fun at TestTubeGames.com: [ForceGr: r^(-2),Qual: 1,Zoom: 1,xSet: 0,ySet: 0], [x0: 0,y0: 0,vx: 0,vy: 0,t0: 0,who: 2,m: 1000,c: 2,w:5], [x0: 50.8278514582,y0: 0.0,vx: -0.0,vy: 4.4355667983,t0: 0,who: 3,m: 0,c: 5], [x0: 49.7171409543,y0: 10.5677045373,vx: -0.922206192771,vy: 4.33863902166,t0: 0,who: 3,m: 0,c: 5], [x0: 46.4335528214,y0: 20.6735496769,vx: -1.80410754968,vy: 4.05209190066,t0: 0,who: 3,m: 0,c: 5], [x0: 41.1205956173,y0: 29.8758614929,vx: -2.6071607496,vy: 3.58844891951,t0: 0,who: 3,m: 0,c: 5], [x0: 34.0104710662,y0: 37.7724548013,vx: -3.29626851422,vy: 2.96797350129,t0: 0,who: 3,m: 0,c: 5], [x0: 25.4139257291,y0: 44.0182105826,vx: -3.84131352751,vy: 2.21778339915,t0: 0,who: 3,m: 0,c: 5], [x0: 15.7066698882,y0: 48.3401593386,vx: -4.21847470699,vy: 1.37066552036,t0: 0,who: 3,m: 0,c: 5], [x0: 5.31295720413,y0: 50.5494111698,vx: -4.41126829928,vy: 0.463642981148,t0: 0,who: 3,m: 0,c: 5], [x0: -5.31295720413,y0: 50.5494111698,vx: -4.41126829928,vy: -0.463642981148,t0: 0,who: 3,m: 0,c: 5], [x0: -15.7066698882,y0: 48.3401593386,vx: -4.21847470699,vy: -1.37066552036,t0: 0,who: 3,m: 0,c: 5], [x0: -25.4139257291,y0: 44.0182105826,vx: -3.84131352751,vy: -2.21778339915,t0: 0,who: 3,m: 0,c: 5], [x0: -34.0104710662,y0: 37.7724548013,vx: -3.29626851422,vy: -2.96797350129,t0: 0,who: 3,m: 0,c: 5], [x0: -41.1205956173,y0: 29.8758614929,vx: -2.6071607496,vy: -3.58844891951,t0: 0,who: 3,m: 0,c: 5], [x0: -46.4335528214,y0: 20.6735496769,vx: -1.80410754968,vy: -4.05209190066,t0: 0,who: 3,m: 0,c: 5], [x0: -49.7171409543,y0: 10.5677045373,vx: -0.922206192771,vy: -4.33863902166,t0: 0,who: 3,m: 0,c: 5], [x0: -50.8278514582,y0: 2.87965113772e-14,vx: -2.5129696831e-15,vy: -4.4355667983,t0: 0,who: 3,m: 0,c: 5], [x0: -49.7171409543,y0: -10.5677045373,vx: 0.922206192771,vy: -4.33863902166,t0: 0,who: 3,m: 0,c: 5], [x0: -46.4335528214,y0: -20.6735496769,vx: 1.80410754968,vy: -4.05209190066,t0: 0,who: 3,m: 0,c: 5], [x0: -41.1205956173,y0: -29.8758614929,vx: 2.6071607496,vy: -3.58844891951,t0: 0,who: 3,m: 0,c: 5], [x0: -34.0104710662,y0: -37.7724548013,vx: 3.29626851422,vy: -2.96797350129,t0: 0,who: 3,m: 0,c: 5], [x0: -25.4139257291,y0: -44.0182105826,vx: 3.84131352751,vy: -2.21778339915,t0: 0,who: 3,m: 0,c: 5], [x0: -15.7066698882,y0: -48.3401593386,vx: 4.21847470699,vy: -1.37066552036,t0: 0,who: 3,m: 0,c: 5], [x0: -5.31295720413,y0: -50.5494111698,vx: 4.41126829928,vy: -0.463642981148,t0: 0,who: 3,m: 0,c: 5], [x0: 5.31295720413,y0: -50.5494111698,vx: 4.41126829928,vy: 0.463642981148,t0: 0,who: 3,m: 0,c: 5], [x0: 15.7066698882,y0: -48.3401593386,vx: 4.21847470699,vy: 1.37066552036,t0: 0,who: 3,m: 0,c: 5], [x0: 25.4139257291,y0: -44.0182105826,vx: 3.84131352751,vy: 2.21778339915,t0: 0,who: 3,m: 0,c: 5], [x0: 34.0104710662,y0: -37.7724548013,vx: 3.29626851422,vy: 2.96797350129,t0: 0,who: 3,m: 0,c: 5], [x0: 41.1205956173,y0: -29.8758614929,vx: 2.6071607496,vy: 3.58844891951,t0: 0,who: 3,m: 0,c: 5], [x0: 46.4335528214,y0: -20.6735496769,vx: 1.80410754968,vy: 4.05209190066,t0: 0,who: 3,m: 0,c: 5], [x0: 49.7171409543,y0: -10.5677045373,vx: 0.922206192771,vy: 4.33863902166,t0: 0,who: 3,m: 0,c: 5]


Create a new paste based on this one


Comments: