示例#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();
	}