Skip to content

Instantly share code, notes, and snippets.

@williamngan
Last active August 7, 2016 09:13
Show Gist options
  • Save williamngan/e0c285f06057e202298f to your computer and use it in GitHub Desktop.
Save williamngan/e0c285f06057e202298f to your computer and use it in GitHub Desktop.
<script type="text/javascript">
// Our exciting code
space = new CanvasSpace("#pt").setup( {bgcolor: "#f1f1f1"} )
form = new Form(space)
dot = new Circle( 250, 250 ).setRadius( 50 )
bot = {
animate: function( time, fs, context ) {
form.fill( "#5AF" ).stroke( false )
form.circle( dot )
}
}
space.add( bot )
space.play()
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment