mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-13 16:33:28 -04:00
Remove debug logging.
This commit is contained in:
parent
58425c6bd3
commit
582f8f84fb
1 changed files with 0 additions and 1 deletions
|
@ -430,7 +430,6 @@ var Matrix = this.Matrix = Base.extend({
|
|||
getRotation: function() {
|
||||
var angle1 = -Math.atan2(this._m01, this._m11),
|
||||
angle2 = Math.atan2(this._m10, this._m00);
|
||||
console.log(angle1 * 180 / Math.PI, angle2 * 180 / Math.PI);
|
||||
return Math.abs(angle1 - angle2) < Numerical.TOLERANCE
|
||||
? angle1 * 180 / Math.PI : undefined;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue