mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-14 11:09:10 -04:00
Update shapes_basic_shapes.c
This commit is contained in:
@ -50,7 +50,7 @@ int main(void)
|
|||||||
|
|
||||||
// Circle shapes and lines
|
// Circle shapes and lines
|
||||||
DrawCircle(screenWidth/5, 120, 35, DARKBLUE);
|
DrawCircle(screenWidth/5, 120, 35, DARKBLUE);
|
||||||
DrawCircleGradient(screenWidth/5, 220, 60, GREEN, SKYBLUE);
|
DrawCircleGradient((Vector2){ screenWidth/5.0f, 220.0f }, 60, GREEN, SKYBLUE);
|
||||||
DrawCircleLines(screenWidth/5, 340, 80, DARKBLUE);
|
DrawCircleLines(screenWidth/5, 340, 80, DARKBLUE);
|
||||||
DrawEllipse(screenWidth/5, 120, 25, 20, YELLOW);
|
DrawEllipse(screenWidth/5, 120, 25, 20, YELLOW);
|
||||||
DrawEllipseLines(screenWidth/5, 120, 30, 25, YELLOW);
|
DrawEllipseLines(screenWidth/5, 120, 30, 25, YELLOW);
|
||||||
|
|||||||
Reference in New Issue
Block a user