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

Unified Diff: sky/examples/fn/widgets/animationgenerator.dart

Issue 976373003: Remove duplicate copy of animation/curves.dart in fn widgets (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/examples/fn/widgets/widgets.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/fn/widgets/animationgenerator.dart
diff --git a/sky/examples/fn/widgets/animationgenerator.dart b/sky/examples/fn/widgets/animationgenerator.dart
index 5c163b6a7bd41ca63a3a1dce4b42ce8ce12ec1de..ef916548946b2892db204aaee920b0ae8470ff76 100644
--- a/sky/examples/fn/widgets/animationgenerator.dart
+++ b/sky/examples/fn/widgets/animationgenerator.dart
@@ -81,57 +81,3 @@ class AnimationGenerator extends FrameGenerator {
return true;
}
}
-
-double _evaluateCubic(double a, double b, double m) {
- // TODO(abarth): Would Math.pow be faster?
- return 3 * a * (1 - m) * (1 - m) * m + 3 * b * (1 - m) * m * m + m * m * m;
-}
-
-const double _kCubicErrorBound = 0.001;
-
-abstract class Curve {
- double transform(double t);
-}
-
-class Linear implements Curve {
- const Linear();
-
- double transform(double t) {
- return t;
- }
-}
-
-class Cubic implements Curve {
- final double a;
- final double b;
- final double c;
- final double d;
-
- const Cubic(this.a, this.b, this.c, this.d);
-
- double transform(double t) {
- if (t == 0.0 || t == 1.0)
- return t;
-
- double start = 0.0;
- double end = 1.0;
- while (true) {
- double midpoint = (start + end) / 2;
- double estimate = _evaluateCubic(a, c, midpoint);
-
- if ((t - estimate).abs() < _kCubicErrorBound)
- return _evaluateCubic(b, d, midpoint);
-
- if (estimate < t)
- start = midpoint;
- else
- end = midpoint;
- }
- }
-}
-
-const Linear linear = const Linear();
-const Cubic ease = const Cubic(0.25, 0.1, 0.25, 1.0);
-const Cubic easeIn = const Cubic(0.42, 0.0, 1.0, 1.0);
-const Cubic easeOut = const Cubic(0.0, 0.0, 0.58, 1.0);
-const Cubic easeInOut = const Cubic(0.42, 0.0, 0.58, 1.0);
« no previous file with comments | « no previous file | sky/examples/fn/widgets/widgets.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698