ISEbd-22 Alimova M.S. Lab Work 01 Hard #1

Closed
malimova wants to merge 6 commits from Lab1 into main
Showing only changes of commit 08e1a6549e - Show all commits

View File

@ -27,11 +27,8 @@ namespace AirBomber
}
public void DrawEngines(Graphics g, int _startPosX, int _startPosY)
{
Pen pen = new(Color.Black);
Brush enginesColor = new SolidBrush(Color.Black);
//g.FillRectangle(enginesColor, _startX + 47, _startY + 20, 20, 15);
//g.FillEllipse(enginesColor, _startX + 80, _startY + 20, 20, 15);
g.FillPolygon(enginesColor, new Point[] //two up
{
new Point(_startPosX + 51, _startPosY + 30),
@ -87,7 +84,6 @@ namespace AirBomber
}
);
}
}
}
}