~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/gui/src/java/org/scilab/modules/gui/tab/ScilabTab.java

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
622
622
        ScilabBridge.setEventHandlerEnabled(this, status);
623
623
    }
624
624
 
625
 
    /**
626
 
     * Get the displacement in pixel that should be used for rotating axes
627
 
     * @param displacement out parameter, [x,y] array of displacement in pixels
628
 
     * @return true if the diplacement recording continue, false otherwise
629
 
     */
630
 
    public boolean getRotationDisplacement(int[] displacement) {
631
 
        return ScilabBridge.getRotationDisplacement(this, displacement);
632
 
    }
633
 
 
634
 
    /**
635
 
     * Asynchronous stop of rotation tracking.
636
 
     */
637
 
    public void stopRotationRecording() {
638
 
        ScilabBridge.stopRotationRecording(this);
639
 
    }
640
625
}
641
626