Returns the projection of one vector onto another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> Project(
Vector<T> source,
Vector<T> target
)
Public Shared Function Project (
source As Vector(Of T),
target As Vector(Of T)
) As Vector(Of T)
public:
static Vector<T>^ Project(
Vector<T>^ source,
Vector<T>^ target
)
static member Project :
source : Vector<'T> *
target : Vector<'T> -> Vector<'T>
Parameters
- source
- Type: Extreme.MathematicsVectorT
The VectorT to project. - target
- Type: Extreme.MathematicsVectorT
The VectorT to project source onto.
Return Value
Type:
VectorTA
VectorT that is the projection of
source
onto
target.
Reference