зафиксировать

This commit is contained in:
Учебный 2023-11-26 17:35:44 +04:00
parent 4c29fdde60
commit d7da54c10d
2 changed files with 6 additions and 7 deletions

View File

@ -92,14 +92,13 @@ namespace ProjectBoat_bae.DrawningObjects
//мотор
Brush brRed = new SolidBrush(EntityBoat.BodyColor);
g.FillEllipse(brRed, _startPosX + 7, _startPosY + 12, 35, 35);
g.FillEllipse(brRed, _startPosX + 7, _startPosY + 72, 35, 35);
//стекла
Brush brBlue = new SolidBrush(Color.LightBlue);
g.FillRectangle(brBlue, _startPosX + 115, _startPosY + 10, 5,
40);
g.FillRectangle(brBlue, _startPosX + 65, _startPosY + 8, 55, 2);
g.FillRectangle(brBlue, _startPosX + 65, _startPosY + 51, 55, 2);
g.FillRectangle(brBlue, _startPosX + 95, _startPosY + 67, 5, 45);
g.FillRectangle(brBlue, _startPosX + 45, _startPosY + 67, 55, 2);
g.FillRectangle(brBlue, _startPosX + 45, _startPosY + 111, 55, 2);
}
// Проверка, что объект может переместится по указанному направлению

View File

@ -20,10 +20,10 @@ namespace ProjectBoat_bae.Generics
/// <summary>
/// Размер занимаемого объектом места (ширина)
/// </summary>
private readonly int _placeSizeWidth = 100;
private readonly int _placeSizeWidth = 150;
// Размер занимаемого объектом места (высота)
private readonly int _placeSizeHeight = 70;
private readonly int _placeSizeHeight = 150;
// Набор объектов
private readonly SetGeneric<T> _collection;