We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24b01b commit 8e54b19Copy full SHA for 8e54b19
1 file changed
examples/shapes/shapes_basic_shapes.c
@@ -50,7 +50,7 @@ int main(void)
50
51
// Circle shapes and lines
52
DrawCircle(screenWidth/5, 120, 35, DARKBLUE);
53
- DrawCircleGradient(screenWidth/5, 220, 60, GREEN, SKYBLUE);
+ DrawCircleGradient((Vector2){ screenWidth/5.0f, 220.0f }, 60, GREEN, SKYBLUE);
54
DrawCircleLines(screenWidth/5, 340, 80, DARKBLUE);
55
DrawEllipse(screenWidth/5, 120, 25, 20, YELLOW);
56
DrawEllipseLines(screenWidth/5, 120, 30, 25, YELLOW);
0 commit comments