本文整理汇总了C++中node::getX方法的典型用法代码示例。如果您正苦于以下问题:C++ node::getX方法的具体用法?C++ node::getX怎么用?C++ node::getX使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类node
的用法示例。
在下文中一共展示了node::getX方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: findNeighboringCell
void pathFinding::findNeighboringCell(node c_node, bool diagonal = false)
{
addCell(getCellIdFromPoint(c_node.getX(), c_node.getY() + 1), c_node);
addCell(getCellIdFromPoint(c_node.getX() - 1, c_node.getY()), c_node);
addCell(getCellIdFromPoint(c_node.getX() + 1, c_node.getY()), c_node);
addCell(getCellIdFromPoint(c_node.getX(), c_node.getY() - 1), c_node);
if (diagonal)
{
addCell(getCellIdFromPoint(c_node.getX() - 1, c_node.getY() + 1), c_node);
addCell(getCellIdFromPoint(c_node.getX() + 1, c_node.getY() + 1), c_node);
addCell(getCellIdFromPoint(c_node.getX() + 1, c_node.getY() - 1), c_node);
addCell(getCellIdFromPoint(c_node.getX() - 1, c_node.getY() - 1), c_node);
}
sortOpenList();
}
示例2: angle
float angle(node d1){
float dx = d1.getX()-x;
float dy = d1.getY()-y;
return atan2(dy,dx);
}
示例3: dist
float dist(node d1){
return pow(pow(x-d1.getX(),2) + pow(y-d1.getY(),2),0.5);
}
示例4: calculH
void node::calculH(node endNode)
{
h = 10 * (fabs(endNode.getX() - m_x) + fabs(endNode.getY() - m_y));
}