UNPKG

kity

Version:
42 lines (39 loc) 1.2 kB
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; } }); });