mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix PlacedSymbol#transformContent.
This commit is contained in:
parent
22bccf3a31
commit
422b8911b8
1 changed files with 3 additions and 0 deletions
|
@ -19,7 +19,10 @@ PlacedSymbol = Item.extend({
|
||||||
} else {
|
} else {
|
||||||
this.matrix = new Matrix();
|
this.matrix = new Matrix();
|
||||||
}
|
}
|
||||||
|
// TODO: this should use strokeBounds:
|
||||||
this._bounds = this.symbol.definition.bounds.clone();
|
this._bounds = this.symbol.definition.bounds.clone();
|
||||||
|
// TODO: should size be cached here, or on Symbol?
|
||||||
|
this._size = this._bounds.size;
|
||||||
},
|
},
|
||||||
|
|
||||||
transformContent: function(matrix, flags) {
|
transformContent: function(matrix, flags) {
|
||||||
|
|
Loading…
Reference in a new issue