Commit 93053c06 authored by Seth Ladd's avatar Seth Ladd

Merge pull request #1001 from flutter/sethladd-patch-2

Link Curve to Curves in doc comments
parents e48efdca c6fc6d2a
......@@ -10,9 +10,11 @@ double _evaluateCubic(double a, double b, double m) {
const double _kCubicErrorBound = 0.001;
/// A mapping of the unit interval to the unit interval
/// A mapping of the unit interval to the unit interval.
///
/// A curve must map 0.0 to 0.0 and 1.0 to 1.0.
///
/// See [Curves] for a collection of common animation curves.
abstract class Curve {
/// Returns the value of the curve at point [t].
///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment