QuaternionLerp Method (Quaternion, Quaternion, Single, Quaternion)

RAGE Plugin Hook Documentation

[This is preliminary documentation and is subject to change.]

Performs a linear interpolation between two quaternions.

Namespace:  Rage
Assembly:  RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax

public static void Lerp(
	ref Quaternion start,
	ref Quaternion end,
	float amount,
	out Quaternion result
)

Parameters

start
Type: RageQuaternion
Start quaternion.
end
Type: RageQuaternion
End quaternion.
amount
Type: SystemSingle
Value between 0 and 1 indicating the weight of end.
result
Type: RageQuaternion
When the method completes, contains the linear interpolation of the two quaternions.
Remarks

This method performs the linear interpolation based on the following formula.
start + (end - start) * amount
Passing amount a value of 0 will cause start to be returned; a value of 1 will cause end to be returned.
See Also

Reference