Skip to content

Instantly share code, notes, and snippets.

@Zlob
Created February 3, 2016 16:51
Show Gist options
  • Save Zlob/a80c013feb2c35535ba0 to your computer and use it in GitHub Desktop.
Save Zlob/a80c013feb2c35535ba0 to your computer and use it in GitHub Desktop.
function Rectangle( x, y, width, height, options ){
function getCenter(){
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