MiniEngine/src/SDLWrapper/Rect.h

22 lines
441 B
C++
Raw Normal View History

2017-06-18 17:00:08 +08:00
#pragma once
#include "include.h"
#include "begin_code.h"
class Rect
{
public:
int x, y, w, h;
Rect(int X, int Y, int W, int H);
explicit Rect(const SDL_Rect&);
Rect();
SDL_Rect toSDLRect() const;
2017-06-18 20:37:45 +08:00
bool isEmpty() const;
2017-06-18 17:00:08 +08:00
bool operator == (const Rect&) const;
bool hasIntersection(const Rect&) const;
Rect getIntersection(const Rect&) const;
Rect getUnion(const Rect&) const;
};
#include "end_code.h"