Click or drag to resize
Vector3Hermite Method (Vector3, Vector3, Vector3, Vector3, Single)

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

Performs a Hermite spline interpolation.

Namespace: VRageMath
Assembly: VRage.Math (in VRage.Math.dll) Version: 1.0.0.0
Syntax
C#
public static Vector3 Hermite(
	Vector3 value1,
	Vector3 tangent1,
	Vector3 value2,
	Vector3 tangent2,
	float amount
)

Parameters

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

Return Value

Type: Vector3

[Missing <returns> documentation for "M:VRageMath.Vector3.Hermite(VRageMath.Vector3,VRageMath.Vector3,VRageMath.Vector3,VRageMath.Vector3,System.Single)"]

See Also