REXM: Updated examples after some renames

This commit is contained in:
Ray
2025-09-08 21:01:59 +02:00
parent c7f8843200
commit ef0dd5f774
21 changed files with 76 additions and 75 deletions

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - draw circle sector
* raylib [shapes] example - circle sector drawing
*
* Example complexity rating: [★★★☆] 3/4
*
@@ -30,7 +30,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - draw circle sector");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - circle sector drawing");
Vector2 center = {(GetScreenWidth() - 300)/2.0f, GetScreenHeight()/2.0f };

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - easings ball anim
* raylib [shapes] example - easings ball
*
* Example complexity rating: [★★☆☆] 2/4
*
@@ -27,7 +27,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings ball anim");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings ball");
// Ball variable value to be animated with easings
int ballPositionX = -100;

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - easings box anim
* raylib [shapes] example - easings box
*
* Example complexity rating: [★★☆☆] 2/4
*
@@ -27,7 +27,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings box anim");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings box");
// Box variables to be animated with easings
Rectangle rec = { GetScreenWidth()/2.0f, -100, 100, 100 };

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - easings rectangle array
* raylib [shapes] example - easings rectangles
*
* Example complexity rating: [★★★☆] 3/4
*
@@ -38,7 +38,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings rectangle array");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - easings rectangles");
Rectangle recs[MAX_RECS_X*MAX_RECS_Y] = { 0 };

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - draw rectangle rounded
* raylib [shapes] example - rounded rectangle drawing
*
* Example complexity rating: [★★★☆] 3/4
*
@@ -30,7 +30,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - draw rectangle rounded");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - rounded rectangle drawing");
float roundness = 0.2f;
float width = 200.0f;