Click or drag to resize
Vector2FSlerp Method
Spherically interpolates between the two passed vectors.

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

Parameters

from
Type: Slash.Math.Algebra.VectorsVector2F
First point of the arc.
to
Type: Slash.Math.Algebra.VectorsVector2F
Last point of the arc.
step
Type: SystemSingle
Interpolation parameter.

Return Value

Type: Vector2F
Value of step along the path along the line segment in the plane.
See Also