Click or drag to resize

MathHelperHermite Method

Performs a Hermite spline interpolation.

Namespace:  SampSharp.Entities.SAMP
Assembly:  SampSharp.Entities (in SampSharp.Entities.dll) Version: 0.0.0-local+709673996c0cc3c0733358a87691d1009326afa7
Syntax
C#
public static float Hermite(
	float value1,
	float tangent1,
	float value2,
	float tangent2,
	float amount
)

Parameters

value1
Type: SystemSingle
Source position.
tangent1
Type: SystemSingle
Source tangent.
value2
Type: SystemSingle
Source position.
tangent2
Type: SystemSingle
Source tangent.
amount
Type: SystemSingle
Weighting factor.

Return Value

Type: Single
The result of the Hermite spline interpolation.
See Also