Vector<T>.Project Method

Returns the projection of one vector onto another.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> Project(
	Vector<T> source,
	Vector<T> target
)

Parameters

source  Vector<T>
The Vector<T> to project.
target  Vector<T>
The Vector<T> to project source onto.

Return Value

Vector<T>
A Vector<T> that is the projection of source onto target.

See Also