OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr40321.C] - Diff between revs 301 and 384

Only display areas with differences | Details | Blame | View Log

Rev 301 Rev 384
/* { dg-do compile } */
/* { dg-do compile } */
struct VectorD2
struct VectorD2
{
{
  VectorD2() : x(0), y(0) { }
  VectorD2() : x(0), y(0) { }
  VectorD2(int _x, int _y) : x(_x), y(_y) { }
  VectorD2(int _x, int _y) : x(_x), y(_y) { }
  int x, y;
  int x, y;
  int GetLength2() const { return x*x + y*y; };
  int GetLength2() const { return x*x + y*y; };
  VectorD2 operator+(const VectorD2 vec) const {
  VectorD2 operator+(const VectorD2 vec) const {
      return VectorD2(x+vec.x,y+vec.y);
      return VectorD2(x+vec.x,y+vec.y);
  }
  }
};
};
struct Shape
struct Shape
{
{
  enum Type { ST_RECT, ST_CIRCLE } type;
  enum Type { ST_RECT, ST_CIRCLE } type;
  VectorD2 pos;
  VectorD2 pos;
  VectorD2 radius;
  VectorD2 radius;
  bool CollisionWith(const Shape& s) const;
  bool CollisionWith(const Shape& s) const;
};
};
bool Shape::CollisionWith(const Shape& s) const
bool Shape::CollisionWith(const Shape& s) const
{
{
  if(type == ST_CIRCLE && s.type == ST_RECT)
  if(type == ST_CIRCLE && s.type == ST_RECT)
    return s.CollisionWith(*this);
    return s.CollisionWith(*this);
  return (pos + s.pos).GetLength2() < (radius + s.radius).GetLength2();
  return (pos + s.pos).GetLength2() < (radius + s.radius).GetLength2();
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.