переделал метод прорисовки заднего фона

This commit is contained in:
Alkin Ivan 2024-05-21 03:45:30 +04:00
parent 6ead7f2b69
commit ef1bec9f3c

View File

@ -32,7 +32,9 @@ public class AirPlaneSharingService : AbstractCompany
int offsetX = 10, offsetY = -12;
int x = _pictureWidth - _placeSizeWidth, y = offsetY;
numRows = 0;
while (y + _placeSizeHeight <= _pictureHeight)
// Уменьшаем _pictureHeight на высоту одной строки, чтобы убрать одну строку
int adjustedHeight = _pictureHeight - (_placeSizeHeight + 5 + offsetY);
while (y + _placeSizeHeight <= adjustedHeight)
{
int numCols = 0;
int initialX = x; // сохраняем начальное значение x
@ -51,6 +53,7 @@ public class AirPlaneSharingService : AbstractCompany
numCols = numCols; // сохраняем значение numCols для использования в других методах
}
protected override void SetObjectsPosition()
{
if (locCoord == null || _collection == null)