Skip to content

Commit

Permalink
fix getAxis visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomEtc committed Mar 29, 2012
1 parent c7b7570 commit e7070f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Arcball.java
Expand Up @@ -114,7 +114,7 @@ public void pre() {
}
}

PVector mouseOnSphere(PVector mouse) {
private PVector mouseOnSphere(PVector mouse) {
PVector v = new PVector();
v.x = (mouse.x - center.x) / radius;
v.y = (mouse.y - center.y) / radius;
Expand All @@ -129,11 +129,11 @@ PVector mouseOnSphere(PVector mouse) {
return v;
}

float getAngle() {
public float getAngle() {
return qNow.getAngle();
}

PVector getAxis() {
public PVector getAxis() {
return qNow.getAxis();
}

Expand Down
Binary file modified library/arcball.jar
Binary file not shown.

0 comments on commit e7070f4

Please sign in to comment.