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