/** * @class Ext.draw.sprite.Plus * @extend Ext.draw.sprite.Path * @alias sprite.plus * * A sprite that represents a plus. * * @example * Ext.create({ * xtype: 'draw', * renderTo: document.body, * width: 600, * height: 400, * sprites: [{ * type: 'plus', * translationX: 100, * translationY: 100, * size: 40, * fillStyle: '#1F6D91' * }] * }); */ /** * @cfg {Number} [size=4] * The size of the sprite. * Meant to be comparable to the size of a circle sprite with the same radius. */