carto/lib/less/node/dimension.js

23 lines
561 B
JavaScript
Raw Normal View History

2010-02-24 02:39:05 +08:00
node.Dimension = function Dimension(value, unit) {
this.value = parseFloat(value);
this.unit = unit || null;
};
node.Dimension.prototype = {
eval: function () { return this },
toColor: function () {
return new(node.Color)([this.value, this.value, this.value]);
},
2010-02-24 02:39:05 +08:00
toCSS: function () {
var css = this.value + this.unit;
return css;
},
operate: function (op, other) {
2010-02-24 02:39:05 +08:00
return new(node.Dimension)
(node.operate(op, this.value, other.value),
this.unit);
2010-02-24 02:39:05 +08:00
}
};