mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Make View#transform() private.
This commit is contained in:
parent
f3f5515763
commit
160f3d55c7
1 changed files with 3 additions and 3 deletions
|
@ -144,12 +144,12 @@ var View = this.View = Base.extend({
|
||||||
|
|
||||||
setZoom: function(zoom) {
|
setZoom: function(zoom) {
|
||||||
// TODO: Clamp the view between 1/32 and 64, just like Illustrator?
|
// TODO: Clamp the view between 1/32 and 64, just like Illustrator?
|
||||||
this.transform(new Matrix().scale(zoom / this._zoom, this.getCenter()));
|
this._transform(new Matrix().scale(zoom / this._zoom, this.getCenter()));
|
||||||
this._zoom = zoom;
|
this._zoom = zoom;
|
||||||
},
|
},
|
||||||
|
|
||||||
scrollBy: function(point) {
|
scrollBy: function(point) {
|
||||||
this.transform(new Matrix().translate(Point.read(arguments).negate()));
|
this._transform(new Matrix().translate(Point.read(arguments).negate()));
|
||||||
},
|
},
|
||||||
|
|
||||||
draw: function() {
|
draw: function() {
|
||||||
|
@ -184,7 +184,7 @@ var View = this.View = Base.extend({
|
||||||
return !!res.length;
|
return !!res.length;
|
||||||
},
|
},
|
||||||
|
|
||||||
transform: function(matrix, flags) {
|
_transform: function(matrix, flags) {
|
||||||
this._matrix.preConcatenate(matrix);
|
this._matrix.preConcatenate(matrix);
|
||||||
// Force recalculation of these values next time they are requested.
|
// Force recalculation of these values next time they are requested.
|
||||||
this._bounds = null;
|
this._bounds = null;
|
||||||
|
|
Loading…
Reference in a new issue