[This is preliminary documentation and is subject to change.]
Performs a Catmull-Rom interpolation using the specified positions.
Namespace: Rage
Assembly: RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax
public static Vector2 CatmullRom( Vector2 value1, Vector2 value2, Vector2 value3, Vector2 value4, float amount )
Parameters
- value1
- Type: RageVector2
The first position in the interpolation. - value2
- Type: RageVector2
The second position in the interpolation. - value3
- Type: RageVector2
The third position in the interpolation. - value4
- Type: RageVector2
The fourth position in the interpolation. - amount
- Type: SystemSingle
Weighting factor.
Return Value
Type: Vector2A vector that is the result of the Catmull-Rom interpolation.
See Also