Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created April 8, 2010 17:00
Show Gist options
  • Save rhyolight/360282 to your computer and use it in GitHub Desktop.
Save rhyolight/360282 to your computer and use it in GitHub Desktop.
function Rectangle(w,h) {
this.width = w;
this.height = h;
}
Rectangle.prototype.area = function() {
return this.width * this.height;
};
PositionedRectangle = function(w,h,x,y) {
Rectangle.call(this, w, h);
this.x = x;
this.y = y;
};
PositionedRectangle.prototype = heir(Rectangle.prototype);
PositionedRectangle.prototype.constructor = Rectangle;
ColoredPositionedRectangle = function(w,h,x,y, clr) {
PositionedRectangle.call(this, w,h,x,y);
this.color = clr;
}
ColoredPositionedRectangle.prototype = heir(PositionedRectangle.prototype);
ColoredPositionedRectangle.prototype.constructor = PositionedRectangle;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment