Добавил проверки

This commit is contained in:
Павел Путилин 2022-10-03 20:19:05 +04:00
parent 7432af9e0b
commit 823b1e5890

View File

@ -54,11 +54,16 @@ namespace AirplaneWithRadar
/// <param name="height">Высота картинки</param>
public void SetPosition(int x, int y, int width, int height)
{
// TODO проверки
_startPosX = x;
_startPosY = y;
_pictureWidth = width;
_pictureHeight = height;
if (x < 0 || y < 0 || width <= _airplaneWidth || height <= _airplaneHeight || x - _airplaneWidth < width || y - _airplaneHeight < height)
{
_pictureHeight = null;
_pictureWidth = null;
}
}
/// <summary>
/// Изменение направления перемещения