Skip to content

Instantly share code, notes, and snippets.

@zeffii
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeffii/cf05bdfcc4a1d15d3836 to your computer and use it in GitHub Desktop.
Save zeffii/cf05bdfcc4a1d15d3836 to your computer and use it in GitHub Desktop.
i can do that 3 - finneky

[ Launch: i can do that 3c ] cf05bdfcc4a1d15d3836 by zeffii
[ Launch: i can do that 3b ] 0c2f0f43caf8850d5fac by zeffii
[ Launch: i can do that 3 ] 4d4e425205275c203a2c by zeffii
[ Launch: i can do that 2 ] dc3093d02641a76a5d6b by zeffii
[ Launch: i can do that ] efc1cf0936b4a12b6760 by zeffii
[ Launch: LissaDotBlast motion trail ] 92f8a469f8e74ac76e16 by zeffii
[ Launch: LissaDotBlast motion trail ] b9eb1a40304e1acbfe5b by zeffii
[ Launch: LissaDotBlast ] 6387636 by zeffii
[ Launch: Lissajous ] 6381091 by zeffii
[ Launch: Lissajous ] 6378631 by slembcke

{"description":"i can do that 3 - finneky","endpoint":"","display":"canvas","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"inlet.coffee":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":true,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/iQYREX3.png","ajax-caching":true}
# after http://beesandbombs.tumblr.com
# http://beesandbombs.tumblr.com/post/118139231509/from-the-archive
circle = (x, y, r, col) ->
ctx.beginPath()
ctx.arc x, y, r, 0, 2.0 * Math.PI, false
ctx.fillStyle = col.toString()
ctx.fill()
get_points = (angle, amp) ->
x: tributary.sw/2 + Math.cos(angle) * amp
y: tributary.sh/2 + Math.sin(angle) * amp
get_amp = (i, num_balls, max_amp) ->
rate = (i/num_balls)
sinusoid = Math.sin(rate*Math.PI)
final_amp = Math.pow(sinusoid, 5) * max_amp
x: (tributary.sw/num_balls)*i
yopt: final_amp + (tributary.sh/2)
y: final_amp
ctx = tributary.ctx
ctx.fillStyle = "black"
num_balls = 300
ball_radius = 6
rotation_slice = 2*Math.PI / num_balls
speed = 1
alien_factor = 17
tributary.run = (unused, t) ->
i = 0
bg_col = 'rgba(6,6,8,0.3)'
amp_col = 'rgba(86,86,88,1.0)'
ctx.fillStyle = bg_col
ctx.fillRect(0,0,tributary.sw, tributary.sh)
boffset = Math.floor((t*num_balls) % num_balls)
# console.log(boffset)
while i < num_balls
j = (i + boffset) % num_balls
pos2 = get_amp(j, num_balls, 53) # gets re-amp values
amp_attack = 72
slice_offset = alien_factor * Math.PI / num_balls
namp = (Math.cos( speed*t + slice_offset*i) * 30)
amp = (namp*pos2.y/amp_attack) + 280
pos = get_points(rotation_slice * i, amp)
amp3 = (namp*-pos2.y/amp_attack) + 280
pos_opp = get_points(rotation_slice * i, amp3)
col = 'hsl(' + i*(360/num_balls) + ', 100%, 50%)'
circle pos.x, pos.y, ball_radius, col
circle pos_opp.x, pos_opp.y, ball_radius, col
circle pos2.x, pos2.yopt, 3, amp_col
i++
.cm-s-elegant.CodeMirror { background: #1e2426; color: #696969; }
.cm-s-elegant div.CodeMirror-selected {background: #064968 !important;} /* 33322B*/
.cm-s-elegant span.cm-variable { color:#22EFFF; }
.cm-s-elegant span.cm-variable-2 { color: #FFCCB4; }
.cm-s-elegant span.cm-variable-3 { color: white; }
.cm-s-elegant span.cm-string { color: Chartreuse; }
.cm-s-elegant span.cm-string-2 {color: Chartreuse;}
.cm-s-elegant span.cm-def {color: #FFCCB4; opacity: 1.0}
.cm-s-elegant span.cm-bracket { color: #EBEFE7; }
.cm-s-elegant pre { color:#FFF; }
.cm-s-elegant span.cm-qualifier { color:#C0C0C0; }
.cm-s-elegant span.cm-comment { color: #AFB4B4;}
.cm-s-elegant span.cm-property {color: #FDA676;}
.cm-s-elegant span.cm-number { color: #FF92EE;}
.cm-s-elegant span.cm-keyword { color: #FFFF18; }
.cm-s-elegant .CodeMirror-cursor { border-left: 1px solid white !important; }
.cm-s-elegant .CodeMirror-gutters {background: #505050;}
.cm-s-elegant .CodeMirror-linenumber {color: #D3D3D3;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment