Home | History | Annotate | Download | only in splash

Lines Matching refs:Timing

24  * This VariableColor varies linearly with respect to its Timing.
32 private final Timing timing;
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing)
45 this.timing = timing;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));