public interface IInterpolated<T>
Modifier and Type | Method and Description |
---|---|
T |
interpolateLinearly(T pOtherObject,
double dLambda)
Returns a linearly interpolated version of this object.
|
T interpolateLinearly(T pOtherObject, double dLambda)
pOtherObject
- The second object that should be used for the interpolation calculation.dLambda
- A double value between 0 and 1. 0 means that the value the current object is use. 1 means that the value of second object is used.