123456789101112131415161718192021222324252627282930313233343536373839404142 |
- define(function(require, exports, module) {
- var Resource = require('./resource');
- var ShapeContainer = require('./shapecontainer');
- var svg = require('./svg');
- return require('../core/class').createClass('PatternBrush', {
- base: Resource,
- mixins: [ShapeContainer],
- constructor: function(paper) {
- this.callBase('pattern', paper);
- this.node.setAttribute('patternUnits', 'userSpaceOnUse');
- },
- setX: function(x) {
- this.x = x;
- this.node.setAttribute('x', x);
- return this;
- },
- setY: function(y) {
- this.y = y;
- this.node.setAttribute('y', y);
- return this;
- },
- setWidth: function(width) {
- this.width = width;
- this.node.setAttribute('width', width);
- return this;
- },
- setHeight: function(height) {
- this.height = height;
- this.node.setAttribute('height', height);
- return this;
- },
- getWidth: function() {
- return this.width;
- },
- getHeight: function() {
- return this.height;
- }
- });
- });
|