Skip to content

Instantly share code, notes, and snippets.

@Zlob
Created February 3, 2016 17:34
Show Gist options
  • Save Zlob/e3172fbe2e8bd19c3741 to your computer and use it in GitHub Desktop.
Save Zlob/e3172fbe2e8bd19c3741 to your computer and use it in GitHub Desktop.
function Rectangle( x, y, width, height, options ){
};
Rectangle.prototype.getCenter = function(){
return {
x: x + width/2,
y: y + height/2
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment