| InterpolationHelperCosineInterpolation Method (Double, Double, Double) |
Performs a cosine interpolation between two values (double-precision).
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static double CosineInterpolation(
double source,
double target,
double parameter
)
Public Shared Function CosineInterpolation (
source As Double,
target As Double,
parameter As Double
) As Double
public:
static double CosineInterpolation(
double source,
double target,
double parameter
)
static member CosineInterpolation :
source : float *
target : float *
parameter : float -> float
Parameters
- source
- Type: SystemDouble
The source value. - target
- Type: SystemDouble
The target value. - parameter
- Type: SystemDouble
The interpolation parameter that lies in the interval [0,1]; also known as interpolation
factor or weight of the target value.
Return Value
Type:
DoubleThe cosine interpolation of two values.
Remarks CosineInterpolation(a, b, 0) returns a. CosineInterpolation(a, b, 1)
returns b.
See Also