Commit c6fc6d2a authored by Seth Ladd's avatar Seth Ladd

Link Curve to Curves in doc comments

parent 884c8e9e
...@@ -10,9 +10,11 @@ double _evaluateCubic(double a, double b, double m) { ...@@ -10,9 +10,11 @@ double _evaluateCubic(double a, double b, double m) {
const double _kCubicErrorBound = 0.001; 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. /// 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 { abstract class Curve {
/// Returns the value of the curve at point [t]. /// 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