Package | Description |
---|---|
org.openimaj.content.animation.animator |
Modifier and Type | Method and Description |
---|---|
static DoubleArrayValueAnimator |
DoubleArrayValueAnimator.makeLinear(int duration,
double... maxs)
Construct a new DoubleArrayValueAnimator from an array of
values using
LinearDoubleValueAnimator s with the
range -max to +max and the given duration. |
static DoubleArrayValueAnimator |
DoubleArrayValueAnimator.makeLinear(int duration,
int count,
double start,
double finish)
Construct a new DoubleArrayValueAnimator from count
LinearDoubleValueAnimator s with the given start
and finish values, and the given duration. |
static DoubleArrayValueAnimator |
DoubleArrayValueAnimator.makeRandomLinear(int duration,
double... maxs)
Construct a new DoubleArrayValueAnimator from an array of
values using
RandomLinearDoubleValueAnimator s with the
range -max to +max and the given duration. |
static DoubleArrayValueAnimator |
DoubleArrayValueAnimator.makeRandomLinear(int duration,
int count,
double start,
double finish)
Construct a new DoubleArrayValueAnimator from count
RandomLinearDoubleValueAnimator s with the given start
and finish values, and the given duration. |