Skip to content

Commit

Permalink
docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpopelyshev committed Mar 5, 2018
1 parent 0274ae2 commit 0f0bccf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/display/src/DisplayObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export default class DisplayObject extends EventEmitter
}

/**
* The skew factor for the object in radians {@link PIXI.settings.useDegrees or degrees}
* The skew factor for the object in radians {@link PIXI.settings.USE_DEGREES or degrees}.
* Assignment by value since pixi-v4.
*
* @member {PIXI.ObservablePoint}
Expand All @@ -542,7 +542,7 @@ export default class DisplayObject extends EventEmitter
}

/**
* The rotation of the object in radians {@link PIXI.settings.useDegrees or degrees}
* The rotation of the object in radians {@link PIXI.settings.USE_DEGREES or degrees}.
*
* @member {number}
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/graphics/src/Graphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@ export default class Graphics extends Container
* @param {number} cx - The x-coordinate of the center of the circle
* @param {number} cy - The y-coordinate of the center of the circle
* @param {number} radius - The radius of the circle
* @param {number} startAngle - The starting angle, in radians {@link PIXI.settings.useDegrees or degrees}
* @param {number} startAngle - The starting angle, in radians {@link PIXI.settings.USE_DEGREES or degrees}
* (0 is at the 3 o'clock position of the arc's circle)
* @param {number} endAngle - The ending angle, in radians {@link PIXI.settings.useDegrees or degrees}
* @param {number} endAngle - The ending angle, in radians {@link PIXI.settings.USE_DEGREES or degrees}
* @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be
* counter-clockwise or clockwise. False is default, and indicates clockwise, while true
* indicates counter-clockwise.
Expand Down
2 changes: 1 addition & 1 deletion packages/settings/src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default {
* @constant
* @memberof PIXI.settings
* @type {boolean}
* @default true
* @default false
*/
USE_DEGREES: false,
};

0 comments on commit 0f0bccf

Please sign in to comment.