~ubuntu-branches/debian/sid/geogebra/sid

« back to all changes in this revision

Viewing changes to geogebra/kernel/Animatable.java

  • Committer: Package Import Robot
  • Author(s): Giovanni Mascellani
  • Date: 2012-01-10 11:37:41 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120110113741-satwohsd4de4ite1
Tags: 4.0.19.0+dfsg1-1
* New upstream version (closes: #649893).
* Update dependency: icedtea-plugin -> icedtea-netx-common (LP: #893007).
* New thumbnailer configuration compatible with Gnome 3.
* Package building is now managed by javahelper instead of upstream
  build.xml.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
         * Performs the next animation step for this GeoElement. This may
7
7
         * change the value of this GeoElement but will NOT call update() or updateCascade().
8
8
         * 
9
 
         * @param frameRate: current frames/second used in animation
 
9
         * @param frameRate current frames/second used in animation
10
10
         * @return whether the value of this GeoElement was changed
11
11
         */
12
12
        public boolean doAnimationStep(double frameRate);
13
13
 
 
14
        public boolean isAnimating();
 
15
 
14
16
}