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

Side by Side Diff: sky/sdk/lib/framework/animation/fling_curve.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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import "dart:math" as math; 5 import "dart:math" as math;
6 6
7 const double _kDefaultAlpha = -5707.62; 7 const double _kDefaultAlpha = -5707.62;
8 const double _kDefaultBeta = 172.0; 8 const double _kDefaultBeta = 172.0;
9 const double _kDefaultGamma = 3.7; 9 const double _kDefaultGamma = 3.7;
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 double update(double timeStamp) { 46 double update(double timeStamp) {
47 double t = timeStamp / 1000.0 - _startTime + _timeOffset; 47 double t = timeStamp / 1000.0 - _startTime + _timeOffset;
48 if (t >= _kCurveDuration) 48 if (t >= _kCurveDuration)
49 return 0.0; 49 return 0.0;
50 double position = _positionAtTime(t) - _positionOffset; 50 double position = _positionAtTime(t) - _positionOffset;
51 double positionDelta = position - _previousPosition; 51 double positionDelta = position - _previousPosition;
52 _previousPosition = position; 52 _previousPosition = position;
53 return _direction * math.max(0.0, positionDelta); 53 return _direction * math.max(0.0, positionDelta);
54 } 54 }
55 } 55 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/animation/curves.dart ('k') | sky/sdk/lib/framework/animation/generators.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698