コード例 #1
0
	bool operator>(const NFVector3& v) const
	{
		return this->Length() > v.Length();
	}
コード例 #2
0
	//----------------------------------------------------------------------------
	float Distance(const NFVector3& v) const
	{
		NFVector3 vX = *this - v;
		return vX.Length();
	}