本文整理汇总了C++中Match::getPitchWidth方法的典型用法代码示例。如果您正苦于以下问题:C++ Match::getPitchWidth方法的具体用法?C++ Match::getPitchWidth怎么用?C++ Match::getPitchWidth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Match
的用法示例。
在下文中一共展示了Match::getPitchWidth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: distanceToPitch
double MatchHelpers::distanceToPitch(const Match& m,
const Vector3& v)
{
float r = m.getPitchWidth() * 0.5f;
float l = -r;
float u = m.getPitchHeight() * 0.5f;
float d = -u;
if(v.x >= l && v.x <= r && v.y >= d && v.y <= u)
return 0.0f;
float dhoriz = v.x < l ? l - v.x : v.x - r;
float dvert = v.y < d ? d - v.y : v.y - u;
if(dvert < 0)
return dhoriz;
else if(dhoriz < 0)
return dvert;
else
return sqrt(dvert * dvert + dhoriz * dhoriz);
}
示例2: onPitch
bool MatchHelpers::onPitch(const Match& m, const Vector3& v)
{
float pw2 = m.getPitchWidth() / 2.0f;
float ph2 = m.getPitchHeight() / 2.0f;
return v.x >= -pw2 && v.y >= -ph2 && v.x <= pw2 && v.y <= ph2;
}