PIbd_13_Klykov_N.V._Simple #1

Closed
nikos77781 wants to merge 3 commits from Lab01 into main
Showing only changes of commit 81bbd8fb14 - Show all commits

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;
}