refactored Color & Dimension operations

This commit is contained in:
cloudhead
2010-02-26 22:30:30 -05:00
parent 1c43df1b85
commit 633660b7af
2 changed files with 11 additions and 36 deletions

View File

@@ -6,25 +6,17 @@ node.Dimension = function Dimension(value, unit) {
node.Dimension.prototype = {
eval: function () { return this },
toColor: function () {
return new(node.Color)([this.value, this.value, this.value]);
},
toCSS: function () {
var css = this.value + this.unit;
return css;
},
'+': function (other) {
operate: function (op, other) {
return new(node.Dimension)
(this.value + other.value, this.unit);
},
'-': function (other) {
return new(node.Dimension)
(this.value - other.value, this.unit);
},
'*': function (other) {
return new(node.Dimension)
(this.value * other.value, this.unit);
},
'/': function (other) {
return new(node.Dimension)
(this.value / other.value, this.unit);
(node.operate(op, this.value, other.value),
this.unit);
}
};