Лабораторная работа №1

This commit is contained in:
nikos77781 2024-02-27 09:22:15 +04:00
parent 93f658233b
commit 81bbd8fb14

View File

@ -147,14 +147,14 @@ public class DrawningExcavator
return true;
// вправо
case DirectionType.Right:
if (_startPosX.Value + _drawningExcavatorWidth + EntityExcavator.Step < _pictureWidth.Value)
if (_startPosX.Value + _drawningExcavatorWidth + EntityExcavator.Step < _pictureWidth)
{
_startPosX += (int)EntityExcavator.Step;
}
return true;
//вниз
case DirectionType.Down:
if (_startPosY.Value + _drawningExcavatorHeight + EntityExcavator.Step < _pictureHeight.Value)
if (_startPosY.Value + _drawningExcavatorHeight + EntityExcavator.Step < _pictureHeight)
{
_startPosY += (int)EntityExcavator.Step;
}