Searched defs:endValue (Results 1 - 4 of 4) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java95 * Linear interpolation from startValue to endValue by the given percent.
96 * Basically: ((1 - percent) * startValue) + (percent * endValue)
99 * scale value to use. if 1, use endValue, if 0, use startValue.
102 * @param endValue
104 * @return The interpolated value between startValue and endValue.
106 public static float interpolateLinear(float scale, float startValue, float endValue) { argument
107 if (startValue == endValue) {
114 return endValue;
116 return ((1f - scale) * startValue) + (scale * endValue);
120 * Linear interpolation from startValue to endValue b
132 interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) argument
154 interpolateLinear(float scale, Vector3f startValue, Vector3f endValue) argument
168 extrapolateLinear(float scale, float startValue, float endValue) argument
186 extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) argument
209 extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue) argument
[all...]
/external/icu4c/i18n/
H A Dcalendar.cpp2341 int32_t endValue = getMinimum(field); local
2344 if (fieldValue == endValue) {
2371 } while (fieldValue >= endValue);
3187 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const argument
3190 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3192 if (startValue == endValue) {
3197 int32_t delta = (endValue > startValue) ? 1 : -1;
3239 } while (startValue != endValue);
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp1768 const TransformAnimationValue* endValue = static_cast<const TransformAnimationValue*>(valueList.at(1)); local
1773 endValue->value()->apply(boxSize, toTransform);
1788 getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue);
1796 getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue);
1804 getTransformFunctionValue(endValue->value()->at(functionIndex), transformOpType, boxSize, toValue);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 121 milliseconds