Skip to content

Instantly share code, notes, and snippets.

@williamngan
Last active August 31, 2015 01:06
Show Gist options
  • Save williamngan/19f6f2c1b4449bde5216 to your computer and use it in GitHub Desktop.
Save williamngan/19f6f2c1b4449bde5216 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
// Previous code omitted ...
bot = {
animate: function( time, fs, context ) {
form.fill( "#999" )
form.text( new Point( 20, 20 ), "frame rate is "+(1000/fs) )
form.fill( "#5AF" ).stroke( false )
dot.setRadius( Math.abs(500 - time % 1000)/20 + 20 )
form.circle( dot )
}
}
// Previous code omitted ...
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment