mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
24 lines
546 B
C++
24 lines
546 B
C++
#include "StdInc.h"
|
|
#include "Geometries.h"
|
|
#include "../CMT.h"
|
|
#include <SDL_events.h>
|
|
|
|
Point::Point(const SDL_MouseMotionEvent &a)
|
|
:x(a.x),y(a.y)
|
|
{}
|
|
|
|
Rect Rect::createCentered( int w, int h )
|
|
{
|
|
return Rect(screen->w/2 - w/2, screen->h/2 - h/2, w, h);
|
|
}
|
|
|
|
Rect Rect::around(const Rect &r, int width /*= 1*/) /*creates rect around another */
|
|
{
|
|
return Rect(r.x - width, r.y - width, r.w + width * 2, r.h + width * 2);
|
|
}
|
|
|
|
Rect Rect::centerIn(const Rect &r)
|
|
{
|
|
return Rect(r.x + (r.w - w) / 2, r.y + (r.h - h) / 2, w, h);
|
|
}
|