//Vector.h
/**
* Gets a copy of this vector projected onto the input vector, which is assumed to be unit length.
*
* @param Normal Vector to project onto (assumed to be unit length).
* @return Projected vector.
*/
FORCEINLINE FVector ProjectOnToNormal(const FVector& Normal) const;
FORCEINLINE FVector FVector::ProjectOnToNormal(const FVector& Normal) const
{
return (Normal * (*this | Normal));
}
/**
* 获取投影到输入向量上的该向量的副本,假定为单位长度。
*
* @param 要投影到的法线向量(假定为单位长度)。
* @return 投影向量。
*/