Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
remove useless wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
akjava committed Jul 8, 2016
1 parent ff13c63 commit 70b9bc0
Showing 1 changed file with 3 additions and 28 deletions.
Expand Up @@ -237,34 +237,6 @@ public final native void setMouseButtons(JavaScriptObject param)/*-{



public final native void rotateLeft(double angle)/*-{
this.rotateLeft(angle);
}-*/;

public final native void rotateUp(double angle)/*-{
this.rotateUp(angle);
}-*/;

public final native void panLeft(double distance)/*-{
this.panLeft(distance);
}-*/;

public final native void panUp(double distance)/*-{
this.panUp(distance);
}-*/;

public final native void pan(double deltaX,double deltaY)/*-{
this.pan(deltaX,deltaY);
}-*/;

public final native void dollyIn(double dollyScale)/*-{
this.dollyIn(dollyScale);
}-*/;

public final native void dollyOut(double dollyScale)/*-{
this.dollyOut(dollyScale);
}-*/;

public final native void update()/*-{
this.update();
}-*/;
Expand All @@ -290,4 +262,7 @@ public final native double getZoomScale()/*-{
return this.getZoomScale();
}-*/;




}

0 comments on commit 70b9bc0

Please sign in to comment.