Ejemplo n.º 1
0
const IntPoint IntPoint::operator-(const IntSize& size) const 
{ 
    return IntPoint(m_x - size.dx(), m_y - size.dy()); 
}
Ejemplo n.º 2
0
const IntPoint IntPoint::operator+(const IntSize& size) const 
{ 
    return IntPoint(m_x + size.dx(), m_y + size.dy()); 
}
Ejemplo n.º 3
0
const IntSize IntSize::operator+(const IntSize& size) const 
{ 
    return IntSize(m_dx + size.dx(), m_dy + size.dy()); 
}
Ejemplo n.º 4
0
const IntSize IntSize::operator-(const IntSize& size) const 
{ 
    return IntSize(m_dx - size.dx(), m_dy - size.dy()); 
}
Ejemplo n.º 5
0
Rectangle BattleTile::rect() const
{
    return Rectangle(m_location.x(), m_location.y(), s_tileSize.dx(), s_tileSize.dy()); 
}