File tree 1 file changed +2
-2
lines changed
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||{};
332
332
/**
333
333
* Applies a clockwise rotation transformation to the matrix.
334
334
* @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 `.
336
336
* @return {Matrix2D } This matrix. Useful for chaining method calls.
337
337
**/
338
338
p . rotate = function ( angle ) {
@@ -353,7 +353,7 @@ this.createjs = this.createjs||{};
353
353
/**
354
354
* Applies a skew transformation to the matrix.
355
355
* @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 `.
357
357
* @param {Number } skewY The amount to skew vertically in degrees.
358
358
* @return {Matrix2D } This matrix. Useful for chaining method calls.
359
359
*/
You can’t perform that action at this time.
0 commit comments