Vector3CatmullRom Method (Vector3, Vector3, Vector3, Vector3, Single) |
[This is preliminary documentation and is subject to change.]
Performs a Catmull-Rom interpolation using the specified positions.
Namespace: VRageMathAssembly: VRage.Math (in VRage.Math.dll) Version: 1.0.0.0
Syntax public static Vector3 CatmullRom(
Vector3 value1,
Vector3 value2,
Vector3 value3,
Vector3 value4,
float amount
)
Parameters
- value1
- Type: VRageMathVector3
The first position in the interpolation. - value2
- Type: VRageMathVector3
The second position in the interpolation. - value3
- Type: VRageMathVector3
The third position in the interpolation. - value4
- Type: VRageMathVector3
The fourth position in the interpolation. - amount
- Type: SystemSingle
Weighting factor.
Return Value
Type:
Vector3[Missing <returns> documentation for "M:VRageMath.Vector3.CatmullRom(VRageMath.Vector3,VRageMath.Vector3,VRageMath.Vector3,VRageMath.Vector3,System.Single)"]
See Also