Click or drag to resize
AnglesSlerp Method
Spherical interpolation of a value from a start angle to an end value for the passed step.

Namespace: Slash.Math.Utils
Assembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax
public static float Slerp(
	float from,
	float to,
	float step
)

Parameters

from
Type: SystemSingle
Start angle (in radians).
to
Type: SystemSingle
End angle (in radians).
step
Type: SystemSingle
Current step value (0...1).

Return Value

Type: Single
Current interpolation value (in radians).
See Also