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