Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: sky/framework/elements/animation/controller.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/framework/editing/keyboard.dart ('k') | sky/framework/elements/animation/timer.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 import "../../animation/curves.dart";
6 import "timer.dart";
7
8 class AnimationController extends AnimationDelegate {
9 final AnimationDelegate _delegate;
10 AnimationTimer _timer;
11 double _begin = 0.0;
12 double _end = 0.0;
13 Curve _curve;
14 bool _isAnimating = false;
15
16 AnimationController(this._delegate) {
17 _timer = new AnimationTimer(this);
18 }
19
20 bool get isAnimating => _isAnimating;
21
22 void start({double begin: 0.0, double end: 0.0, Curve curve: linear,
23 double duration: 0.0}) {
24 _begin = begin;
25 _end = end;
26 _curve = curve;
27 _isAnimating = true;
28 _timer.start(duration);
29 }
30
31 void stop() {
32 _isAnimating = false;
33 _timer.stop();
34 }
35
36 double _positionForTime(double t) {
37 // Explicitly finish animations at |_end| in case the curve isn't an
38 // exact numerical transform.
39 if (t == 1)
40 return _end;
41 double curvedTime = _curve.transform(t);
42 return _begin + (_end - _begin) * curvedTime;
43 }
44
45 void updateAnimation(double t) {
46 _delegate.updateAnimation(_positionForTime(t));
47 }
48 }
OLDNEW
« no previous file with comments | « sky/framework/editing/keyboard.dart ('k') | sky/framework/elements/animation/timer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698