Lines Matching refs:input

28             public float getInterpolation(float input) {
29 return input;
36 public float getInterpolation(float input) {
37 return DOMAIN*(input/=DURATION)*input*input + START;
41 public float getInterpolation(float input) {
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START;
46 public float getInterpolation(float input) {
47 return ((input/=DURATION/2) < 1.0f) ?
48 (DOMAIN/2*input*input*input + START)
49 : (DOMAIN/2*((input-=2)*input*input + 2) + START);
56 public float getInterpolation (float input) {
57 return DOMAIN*(input/=DURATION)*input + START;
61 public float getInterpolation(float input) {
62 return -DOMAIN *(input/=DURATION)*(input-2) + START;
66 public float getInterpolation(float input) {
67 return ((input/=DURATION/2) < 1) ?
68 (DOMAIN/2*input*input + START)
69 : (-DOMAIN/2 * ((--input)*(input-2) - 1) + START);
76 public float getInterpolation(float input) {
77 return DOMAIN*(input/=DURATION)*input*input*input + START;
81 public float getInterpolation(float input) {
82 return -DOMAIN * ((input=input/DURATION-1)*input*input*input - 1) + START;
86 public float getInterpolation(float input) {
87 return ((input/=DURATION/2) < 1) ?
88 (DOMAIN/2*input*input*input*input + START)
89 : (-DOMAIN/2 * ((input-=2)*input*input*input - 2) + START);
96 public float getInterpolation(float input) {
97 return DOMAIN*(input/=DURATION)*input*input*input*input + START;
101 public float getInterpolation(float input) {
102 return DOMAIN*((input=input/DURATION-1)*input*input*input*input + 1) + START;
106 public float getInterpolation(float input) {
107 return ((input/=DURATION/2) < 1) ?
108 (DOMAIN/2*input*input*input*input*input + START)
109 : (DOMAIN/2*((input-=2)*input*input*input*input + 2) + START);
116 public float getInterpolation(float input) {
117 return -DOMAIN * (float) Math.cos(input/DURATION * (Math.PI/2)) + DOMAIN + START;
121 public float getInterpolation(float input) {
122 return DOMAIN * (float) Math.sin(input/DURATION * (Math.PI/2)) + START;
126 public float getInterpolation(float input) {
127 return -DOMAIN/2 * ((float)Math.cos(Math.PI*input/DURATION) - 1.0f) + START;