當前位置: 首頁>>代碼示例>>C++>>正文


C++ Box2D::set方法代碼示例

本文整理匯總了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;
}
開發者ID:jmainpri,項目名稱:KrisLibrary,代碼行數:14,代碼來源:Geometric2DCSpace.cpp

示例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;
}
開發者ID:jmainpri,項目名稱:KrisLibrary,代碼行數:22,代碼來源:Geometric2DCSpace.cpp


注:本文中的Box2D::set方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。