paper.js/src/item/PlacedSymbol.js

72 lines
1.7 KiB
JavaScript
Raw Normal View History

var PlacedSymbol = this.PlacedSymbol = Item.extend({
beans: true,
initialize: function() {
this.base();
if (arguments[0] instanceof Symbol) {
this.symbol = arguments[0];
} else {
this.symbol = new Symbol(arguments[0]);
}
if (arguments.length > 1) {
var arg = arguments[1];
if (arg instanceof Matrix) {
this.matrix = arguments[2];
} else {
var offset = Point.read(arguments, 1);
this.matrix = new Matrix().translate(offset);
}
} else {
this.matrix = new Matrix();
}
this._bounds = this.symbol.definition.strokeBounds.clone();
2011-02-26 07:14:58 -05:00
// TODO: should size be cached here, or on Symbol?
this._size = this._bounds.size;
},
_transform: function(matrix, flags) {
var width = this._size.width;
var height = this._size.height;
var x = width * -0.5;
var y = height * -0.5;
var coords = [
x, y,
x + width, y,
x + width, y + height,
x, y + height];
this.matrix.preConcatenate(matrix);
this.matrix.transform(coords, 0, coords, 0, 4);
var xMin = coords[0], xMax = coords[0];
var yMin = coords[1], yMax = coords[1];
2011-02-28 12:31:51 -05:00
for (var i = 2; i < 8; i += 2) {
var x = coords[i];
var y = coords[i + 1];
xMin = Math.min(x, xMin);
xMax = Math.max(x, xMax);
yMin = Math.min(y, yMin);
yMax = Math.max(y, yMax);
};
var bounds = this._bounds;
bounds.x = xMin;
bounds.y = yMin;
bounds.width = xMax - xMin;
bounds.height = yMax - yMin;
},
getBounds: function() {
return this._bounds;
},
draw: function(ctx, param) {
// TODO: we need to preserve strokewidth
ctx.save();
this.matrix.applyToContext(ctx);
Item.draw(this.symbol.definition, ctx, param);
ctx.restore();
}
// TODO:
// embed()
2011-03-03 11:32:55 -05:00
});