mirror of https://github.com/adamdruppe/arsd.git
pr indent fixup
This commit is contained in:
parent
6b3ebe868e
commit
1268d3bf42
|
@ -6604,12 +6604,11 @@ struct ScreenPainter {
|
||||||
impl.drawArc(upperLeft.x, upperLeft.y, width, height, start, finish);
|
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
|
//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
|
//will be drawn at as a Point struct and the radius as an int
|
||||||
void drawCircle(Point upperLeft, int radius)
|
void drawCircle(Point upperLeft, int radius) {
|
||||||
{
|
this.drawArc(upperLeft, radius, radius, 0, 0);
|
||||||
this.drawArc(upperLeft, radius, radius, 0, 0);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/// .
|
/// .
|
||||||
void drawPolygon(Point[] vertexes) {
|
void drawPolygon(Point[] vertexes) {
|
||||||
|
|
Loading…
Reference in New Issue