Animation<T> animate(Animation<double> parent)

Returns a new Animation that is driven by the given animation but that takes on values determined by this object.

Source

Animation<T> animate(Animation<double> parent) {
  return new _AnimatedEvaluation<T>(parent, this);
}