File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ this.createjs = this.createjs||{};
332332 /**
333333 * Applies a clockwise rotation transformation to the matrix.
334334 * @method rotate
335- * @param {Number } angle The angle to rotate by, in degrees. To use a value in radians, multiply it by `180/ Math.PI`.
335+ * @param {Number } angle The angle to rotate by, in degrees. To use a value in radians, multiply it by `Math.PI/180 `.
336336 * @return {Matrix2D } This matrix. Useful for chaining method calls.
337337 **/
338338 p . rotate = function ( angle ) {
@@ -353,7 +353,7 @@ this.createjs = this.createjs||{};
353353 /**
354354 * Applies a skew transformation to the matrix.
355355 * @method skew
356- * @param {Number } skewX The amount to skew horizontally in degrees. To use a value in radians, multiply it by `180/ Math.PI`.
356+ * @param {Number } skewX The amount to skew horizontally in degrees. To use a value in radians, multiply it by `Math.PI/180 `.
357357 * @param {Number } skewY The amount to skew vertically in degrees.
358358 * @return {Matrix2D } This matrix. Useful for chaining method calls.
359359 */
You can’t perform that action at this time.
0 commit comments