Skip to content

Instantly share code, notes, and snippets.

@koozdra
Last active February 16, 2016 05:54
Show Gist options
  • Save koozdra/1d422b10a31a2b2613f2 to your computer and use it in GitHub Desktop.
Save koozdra/1d422b10a31a2b2613f2 to your computer and use it in GitHub Desktop.
var circle = (function() {
// all shapes should show by default at the center of the canvas
var x = 10,
y = 10,
radius = 10;
return {
at: function(x, y) {
this.x = x;
this.y = y;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment