kityminder
Version:
50 lines (41 loc) • 1.3 kB
JavaScript
define(function(require, exports, module) {
var Gradient = require('./gradient');
return require('../core/class').createClass('RadialGradientBrush', {
base: Gradient,
constructor: function(paper) {
this.callBase('radialGradient', paper);
this.setCenter(0.5, 0.5);
this.setFocal(0.5, 0.5);
this.setRadius(0.5);
},
setCenter: function(cx, cy) {
this.node.setAttribute('cx', cx);
this.node.setAttribute('cy', cy);
return this;
},
getCenter: function() {
return {
x: +this.node.getAttribute('cx'),
y: +this.node.getAttribute('cy')
};
},
setFocal: function(fx, fy) {
this.node.setAttribute('fx', fx);
this.node.setAttribute('fy', fy);
return this;
},
getFocal: function() {
return {
x: +this.node.getAttribute('fx'),
y: +this.node.getAttribute('fy')
};
},
setRadius: function(r) {
this.node.setAttribute('r', r);
return this;
},
getRadius: function() {
return +this.node.getAttribute('r');
}
});
});