本文整理汇总了C++中cocos2d::Rect::intersectsRect方法的典型用法代码示例。如果您正苦于以下问题:C++ Rect::intersectsRect方法的具体用法?C++ Rect::intersectsRect怎么用?C++ Rect::intersectsRect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cocos2d::Rect
的用法示例。
在下文中一共展示了Rect::intersectsRect方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: checkChildType
bool TeachLayer::checkChildType(cocos2d::Node *pNode, cocos2d::Rect stencilRect)
{
if (!pNode) return false;
if (0 >= pNode->getChildrenCount()) return false;
for (auto child : pNode->getChildren())
{
if (dynamic_cast<SpriteButton*>(child))
{
auto spriteButton = dynamic_cast<SpriteButton*>(child);
Rect btnRect = getNodeRect(spriteButton);
if (stencilRect.intersectsRect(btnRect))
{
removeFromParent();
// spriteButton->execCallBackEvent();
return true;
}
}
}
for (auto child : pNode->getChildren())
{
if (checkChildType(child, stencilRect))
return true;
}
return false;
}
示例2: getShowCells
void TableView::getShowCells(const cocos2d::Rect& area, std::vector<uint16_t>* dst)
{
Rect _cellRect;
for (int i = 0; i < m_totalCnt; ++i)
{
getCellRect(i, &_cellRect);
if (!area.intersectsRect(_cellRect))
continue;
dst->push_back(i);
}
}