mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Revert unecessarily commited files in pull request #586
This commit is contained in:
parent
dfda6cf7b5
commit
5b9eb4bd1a
4 changed files with 90 additions and 92 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1 @@
|
|||
.DS_Store
|
||||
build/zip
|
||||
|
|
54
dist/paper-core.js
vendored
54
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Dec 2 22:31:20 2014 -0800
|
||||
* Date: Sat Nov 22 09:01:01 2014 -0800
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -219,8 +219,10 @@ var Base = new function() {
|
|||
|| ctor.name === 'Object');
|
||||
},
|
||||
|
||||
pick: function(a, b) {
|
||||
return a !== undefined ? a : b;
|
||||
pick: function() {
|
||||
for (var i = 0, l = arguments.length; i < l; i++)
|
||||
if (arguments[i] !== undefined)
|
||||
return arguments[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -255,10 +257,6 @@ Base.inject({
|
|||
}, []).join(', ') + ' }';
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class || '';
|
||||
},
|
||||
|
||||
exportJSON: function(options) {
|
||||
return Base.exportJSON(this, options);
|
||||
},
|
||||
|
@ -2835,6 +2833,10 @@ var Item = Base.extend(Emitter, {
|
|||
return this._id;
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class;
|
||||
},
|
||||
|
||||
getName: function() {
|
||||
return this._name;
|
||||
},
|
||||
|
@ -5359,7 +5361,6 @@ var SegmentPoint = Point.extend({
|
|||
|
||||
var Curve = Base.extend({
|
||||
_class: 'Curve',
|
||||
|
||||
initialize: function Curve(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
||||
var count = arguments.length;
|
||||
if (count === 3) {
|
||||
|
@ -10320,8 +10321,21 @@ var View = Base.extend(Emitter, {
|
|||
userDrag: none,
|
||||
tapHighlightColor: 'rgba(0,0,0,0)'
|
||||
});
|
||||
|
||||
var getCanvasSize = function() {
|
||||
if (PaperScope.hasAttribute(element, 'resize')) {
|
||||
var offset = DomElement.getOffset(element, true),
|
||||
that = this;
|
||||
size = DomElement.getViewportBounds(element)
|
||||
.getSize().subtract(offset);
|
||||
this._windowEvents = {
|
||||
resize: function() {
|
||||
if (!DomElement.isInvisible(element))
|
||||
offset = DomElement.getOffset(element, true);
|
||||
that.setViewSize(DomElement.getViewportBounds(element)
|
||||
.getSize().subtract(offset));
|
||||
}
|
||||
};
|
||||
DomEvent.add(window, this._windowEvents);
|
||||
} else {
|
||||
size = DomElement.getSize(element);
|
||||
if (size.isNaN() || size.isZero()) {
|
||||
var getSize = function(name) {
|
||||
|
@ -10330,20 +10344,8 @@ var View = Base.extend(Emitter, {
|
|||
};
|
||||
size = new Size(getSize('width'), getSize('height'));
|
||||
}
|
||||
return size;
|
||||
};
|
||||
|
||||
this._resizable = PaperScope.hasAttribute(element, 'resize');
|
||||
if (this._resizable) {
|
||||
var that = this;
|
||||
this._windowEvents = {
|
||||
resize: function() {
|
||||
that.setViewSize(getCanvasSize());
|
||||
}
|
||||
};
|
||||
DomEvent.add(window, this._windowEvents);
|
||||
}
|
||||
this._setViewSize(getCanvasSize());
|
||||
this._setViewSize(size);
|
||||
if (PaperScope.hasAttribute(element, 'stats')
|
||||
&& typeof Stats !== 'undefined') {
|
||||
this._stats = new Stats();
|
||||
|
@ -10758,10 +10760,8 @@ var CanvasView = View.extend({
|
|||
element.width = width * pixelRatio;
|
||||
element.height = height * pixelRatio;
|
||||
if (pixelRatio !== 1) {
|
||||
if (this._resizable === false) {
|
||||
style.width = width + 'px';
|
||||
style.height = height + 'px';
|
||||
}
|
||||
this._context.scale(pixelRatio, pixelRatio);
|
||||
}
|
||||
},
|
||||
|
@ -11735,11 +11735,11 @@ new function() {
|
|||
scale = decomposed.scaling;
|
||||
if (trans && !trans.isZero())
|
||||
parts.push('translate(' + formatter.point(trans) + ')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
if (!Numerical.isZero(scale.x - 1)
|
||||
|| !Numerical.isZero(scale.y - 1))
|
||||
parts.push('scale(' + formatter.point(scale) +')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
attrs.transform = parts.join(' ');
|
||||
} else {
|
||||
attrs.transform = 'matrix(' + matrix.getValues().join(',') + ')';
|
||||
|
|
54
dist/paper-full.js
vendored
54
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Dec 2 22:31:20 2014 -0800
|
||||
* Date: Sat Nov 22 09:01:01 2014 -0800
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -219,8 +219,10 @@ var Base = new function() {
|
|||
|| ctor.name === 'Object');
|
||||
},
|
||||
|
||||
pick: function(a, b) {
|
||||
return a !== undefined ? a : b;
|
||||
pick: function() {
|
||||
for (var i = 0, l = arguments.length; i < l; i++)
|
||||
if (arguments[i] !== undefined)
|
||||
return arguments[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -255,10 +257,6 @@ Base.inject({
|
|||
}, []).join(', ') + ' }';
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class || '';
|
||||
},
|
||||
|
||||
exportJSON: function(options) {
|
||||
return Base.exportJSON(this, options);
|
||||
},
|
||||
|
@ -2835,6 +2833,10 @@ var Item = Base.extend(Emitter, {
|
|||
return this._id;
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class;
|
||||
},
|
||||
|
||||
getName: function() {
|
||||
return this._name;
|
||||
},
|
||||
|
@ -5359,7 +5361,6 @@ var SegmentPoint = Point.extend({
|
|||
|
||||
var Curve = Base.extend({
|
||||
_class: 'Curve',
|
||||
|
||||
initialize: function Curve(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
||||
var count = arguments.length;
|
||||
if (count === 3) {
|
||||
|
@ -10320,8 +10321,21 @@ var View = Base.extend(Emitter, {
|
|||
userDrag: none,
|
||||
tapHighlightColor: 'rgba(0,0,0,0)'
|
||||
});
|
||||
|
||||
var getCanvasSize = function() {
|
||||
if (PaperScope.hasAttribute(element, 'resize')) {
|
||||
var offset = DomElement.getOffset(element, true),
|
||||
that = this;
|
||||
size = DomElement.getViewportBounds(element)
|
||||
.getSize().subtract(offset);
|
||||
this._windowEvents = {
|
||||
resize: function() {
|
||||
if (!DomElement.isInvisible(element))
|
||||
offset = DomElement.getOffset(element, true);
|
||||
that.setViewSize(DomElement.getViewportBounds(element)
|
||||
.getSize().subtract(offset));
|
||||
}
|
||||
};
|
||||
DomEvent.add(window, this._windowEvents);
|
||||
} else {
|
||||
size = DomElement.getSize(element);
|
||||
if (size.isNaN() || size.isZero()) {
|
||||
var getSize = function(name) {
|
||||
|
@ -10330,20 +10344,8 @@ var View = Base.extend(Emitter, {
|
|||
};
|
||||
size = new Size(getSize('width'), getSize('height'));
|
||||
}
|
||||
return size;
|
||||
};
|
||||
|
||||
this._resizable = PaperScope.hasAttribute(element, 'resize');
|
||||
if (this._resizable) {
|
||||
var that = this;
|
||||
this._windowEvents = {
|
||||
resize: function() {
|
||||
that.setViewSize(getCanvasSize());
|
||||
}
|
||||
};
|
||||
DomEvent.add(window, this._windowEvents);
|
||||
}
|
||||
this._setViewSize(getCanvasSize());
|
||||
this._setViewSize(size);
|
||||
if (PaperScope.hasAttribute(element, 'stats')
|
||||
&& typeof Stats !== 'undefined') {
|
||||
this._stats = new Stats();
|
||||
|
@ -10758,10 +10760,8 @@ var CanvasView = View.extend({
|
|||
element.width = width * pixelRatio;
|
||||
element.height = height * pixelRatio;
|
||||
if (pixelRatio !== 1) {
|
||||
if (this._resizable === false) {
|
||||
style.width = width + 'px';
|
||||
style.height = height + 'px';
|
||||
}
|
||||
this._context.scale(pixelRatio, pixelRatio);
|
||||
}
|
||||
},
|
||||
|
@ -11735,11 +11735,11 @@ new function() {
|
|||
scale = decomposed.scaling;
|
||||
if (trans && !trans.isZero())
|
||||
parts.push('translate(' + formatter.point(trans) + ')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
if (!Numerical.isZero(scale.x - 1)
|
||||
|| !Numerical.isZero(scale.y - 1))
|
||||
parts.push('scale(' + formatter.point(scale) +')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
attrs.transform = parts.join(' ');
|
||||
} else {
|
||||
attrs.transform = 'matrix(' + matrix.getValues().join(',') + ')';
|
||||
|
|
23
dist/paper-node.js
vendored
23
dist/paper-node.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Dec 2 22:31:20 2014 -0800
|
||||
* Date: Sat Nov 22 09:01:01 2014 -0800
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -219,8 +219,10 @@ var Base = new function() {
|
|||
|| ctor.name === 'Object');
|
||||
},
|
||||
|
||||
pick: function(a, b) {
|
||||
return a !== undefined ? a : b;
|
||||
pick: function() {
|
||||
for (var i = 0, l = arguments.length; i < l; i++)
|
||||
if (arguments[i] !== undefined)
|
||||
return arguments[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -245,10 +247,6 @@ Base.inject({
|
|||
}, []).join(', ') + ' }';
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class || '';
|
||||
},
|
||||
|
||||
exportJSON: function(options) {
|
||||
return Base.exportJSON(this, options);
|
||||
},
|
||||
|
@ -2804,6 +2802,10 @@ var Item = Base.extend(Emitter, {
|
|||
return this._id;
|
||||
},
|
||||
|
||||
getClassName: function() {
|
||||
return this._class;
|
||||
},
|
||||
|
||||
getName: function() {
|
||||
return this._name;
|
||||
},
|
||||
|
@ -5343,7 +5345,6 @@ var SegmentPoint = Point.extend({
|
|||
|
||||
var Curve = Base.extend({
|
||||
_class: 'Curve',
|
||||
|
||||
initialize: function Curve(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
||||
var count = arguments.length;
|
||||
if (count === 3) {
|
||||
|
@ -10480,10 +10481,8 @@ var CanvasView = View.extend({
|
|||
element.width = width * pixelRatio;
|
||||
element.height = height * pixelRatio;
|
||||
if (pixelRatio !== 1) {
|
||||
if (this._resizable === false) {
|
||||
style.width = width + 'px';
|
||||
style.height = height + 'px';
|
||||
}
|
||||
this._context.scale(pixelRatio, pixelRatio);
|
||||
}
|
||||
},
|
||||
|
@ -11076,11 +11075,11 @@ new function() {
|
|||
scale = decomposed.scaling;
|
||||
if (trans && !trans.isZero())
|
||||
parts.push('translate(' + formatter.point(trans) + ')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
if (!Numerical.isZero(scale.x - 1)
|
||||
|| !Numerical.isZero(scale.y - 1))
|
||||
parts.push('scale(' + formatter.point(scale) +')');
|
||||
if (angle)
|
||||
parts.push('rotate(' + formatter.number(angle) + ')');
|
||||
attrs.transform = parts.join(' ');
|
||||
} else {
|
||||
attrs.transform = 'matrix(' + matrix.getValues().join(',') + ')';
|
||||
|
|
Loading…
Reference in a new issue