Skip to content

Instantly share code, notes, and snippets.

@jeisenma
Created March 6, 2012 15:13
Show Gist options
  • Save jeisenma/1986740 to your computer and use it in GitHub Desktop.
Save jeisenma/1986740 to your computer and use it in GitHub Desktop.
circle test
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Circular Progressbar</title>
<script type="text/javascript" src="http://paperjs.org/static/js/paper.js"></script>
<script type="text/paperscript" canvas="canvas">
var circle = new Path.Circle(view.center, 50);
circle.fillColor = 'red';
</script>
</head>
<body style="margin:0;overflow:hidden">
<canvas id="canvas" resize></canvas>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment