跳至主要內容

F20.Vector中Size和Length区别

Mr.Si小于 1 分钟u++

导言

头像
Vector中Size和Length区别?
头像
同个东西。。。
template<typename T>
FORCEINLINE T TVector<T>::Size() const
{
    return FMath::Sqrt(X*X + Y*Y + Z*Z);
}

template<typename T>
FORCEINLINE T TVector<T>::Length() const
{
	return Size();
}