This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//============================================================ | |
// Register Namespace | |
//------------------------------------------------------------ | |
var Shape = Shape||{}; | |
//============================================================ | |
// Constructor - MUST BE AT TOP OF FILE | |
//------------------------------------------------------------ | |
Shape.Rectangle = function Shape_Rectangle(width, height, color){ | |
this.Width = width; |
NewerOlder