pr indent fixup

This commit is contained in:
Adam D. Ruppe 2019-07-09 08:50:22 -04:00
parent 6b3ebe868e
commit 1268d3bf42
1 changed files with 5 additions and 6 deletions

View File

@ -6604,12 +6604,11 @@ struct ScreenPainter {
impl.drawArc(upperLeft.x, upperLeft.y, width, height, start, finish);
}
//this function draws a circle using the drawArc() function above, it requires you to pass the point it
//will be drawn at as a Point struct and the radius as an int
void drawCircle(Point upperLeft, int radius)
{
this.drawArc(upperLeft, radius, radius, 0, 0);
}
//this function draws a circle using the drawArc() function above, it requires you to pass the point it
//will be drawn at as a Point struct and the radius as an int
void drawCircle(Point upperLeft, int radius) {
this.drawArc(upperLeft, radius, radius, 0, 0);
}
/// .
void drawPolygon(Point[] vertexes) {