Skip to content

Commit

Permalink
The CursorEvent getRotation methods need to be public.
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul authored and liaxim committed Nov 23, 2016
1 parent 03fd407 commit 5ef39d5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public float getCursorPositionZ() {
*
* @return 'W' quaternion component of the {@link Cursor} that generated this event.
*/
float getCursorRotationW() {
public float getCursorRotationW() {
return cursorRotation.w;
}

Expand All @@ -253,7 +253,7 @@ float getCursorRotationW() {
*
* @return 'X' quaternion component of the {@link Cursor} that generated this event.
*/
float getCursorRotationX() {
public float getCursorRotationX() {
return cursorRotation.x;
}

Expand All @@ -266,7 +266,7 @@ float getCursorRotationX() {
*
* @return 'Y' quaternion component of the {@link Cursor} that generated this event.
*/
float getCursorRotationY() {
public float getCursorRotationY() {
return cursorRotation.y;
}

Expand All @@ -279,7 +279,7 @@ float getCursorRotationY() {
*
* @return 'Z' quaternion component of the {@link Cursor} that generated this event.
*/
float getCursorRotationZ() {
public float getCursorRotationZ() {
return cursorRotation.z;
}

Expand Down

0 comments on commit 5ef39d5

Please sign in to comment.