本文整理匯總了C++中Box2D::set方法的典型用法代碼示例。如果您正苦於以下問題:C++ Box2D::set方法的具體用法?C++ Box2D::set怎麽用?C++ Box2D::set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Box2D
的用法示例。
在下文中一共展示了Box2D::set方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1:
bool Geometric2DCollection::Collides(const Geometric2DCollection& geom,int obstacle) const
{
for(size_t i=0;i<geom.aabbs.size();i++) {
Box2D box; box.set(geom.aabbs[i]);
if(Collides(box,obstacle)) return true;
}
for(size_t i=0;i<geom.boxes.size();i++)
if(Collides(geom.boxes[i],obstacle)) return true;
for(size_t i=0;i<geom.circles.size();i++)
if(Collides(geom.circles[i],obstacle)) return true;
for(size_t i=0;i<geom.triangles.size();i++)
if(Collides(geom.triangles[i],obstacle)) return true;
return false;
}
示例2: ObstacleIndex
bool Geometric2DCollection::Collides(const Triangle2D& t,int obstacle) const
{
Type type=ObstacleType(obstacle);
int index = ObstacleIndex(obstacle);
switch(type) {
case AABB:
{
Box2D box; box.set(aabbs[index]);
return box.intersects(t);
}
case Triangle:
return triangles[index].intersects(t);
case Box:
return boxes[index].intersects(t);
case Circle:
{
return (t.closestPoint(circles[index].center).distanceSquared(circles[index].center) < Sqr(circles[index].radius));
}
}
abort();
return false;
}