~ubuntu-branches/ubuntu/trusty/unity-greeter/trusty-proposed

« back to all changes in this revision

Viewing changes to src/animate-timer.vala

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-06-17 13:54:17 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20130617135417-s69jwbohumds9sm4
Tags: 13.10.0-0ubuntu1
* New upstream release:
  - updated logo for 13.10, thanks Xi Zhu!

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
       time is not normalized yet! */
116
116
    private double calculate_progress (TimeSpan time)
117
117
    {
 
118
        if (length == 0)
 
119
            return 1.0;
118
120
        var x = normalize_time (time);
119
121
        var y = easing_func (x);
120
122
        return y.clamp (0.0, 1.0);