Version

InterpolateValue<T> Method

Interpolates value
Syntax
'Declaration
 
Public Shared Function InterpolateValue(Of T)( _
   ByVal interpolatedValue As T, _
   ByVal p As Double, _
   ByVal minValue As T, _
   ByVal maxValue As T, _
   ByVal createEmpty As Func(Of T), _
   ByVal interpolate As Func(Of Double,Double,T,T,T) _
) As T
public static T InterpolateValue<T>( 
   T interpolatedValue,
   double p,
   T minValue,
   T maxValue,
   Func<T> createEmpty,
   Func<double,double,T,T,T> interpolate
)

Parameters

interpolatedValue
p
minValue
maxValue
createEmpty
interpolate

Type Parameters

T
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also