Skip to content

Commit 6254bd9

Browse files
committed
Updated with rexm update
1 parent bcab279 commit 6254bd9

File tree

9 files changed

+618
-14
lines changed

9 files changed

+618
-14
lines changed

examples/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ SHAPES = \
554554
shapes/shapes_easings_box \
555555
shapes/shapes_easings_rectangles \
556556
shapes/shapes_following_eyes \
557+
shapes/shapes_kaleidoscope \
557558
shapes/shapes_lines_bezier \
558559
shapes/shapes_logo_raylib \
559560
shapes/shapes_logo_raylib_anim \

examples/Makefile.Web

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ SHAPES = \
554554
shapes/shapes_easings_box \
555555
shapes/shapes_easings_rectangles \
556556
shapes/shapes_following_eyes \
557+
shapes/shapes_kaleidoscope \
557558
shapes/shapes_lines_bezier \
558559
shapes/shapes_logo_raylib \
559560
shapes/shapes_logo_raylib_anim \
@@ -853,6 +854,9 @@ shapes/shapes_easings_rectangles: shapes/shapes_easings_rectangles.c
853854
shapes/shapes_following_eyes: shapes/shapes_following_eyes.c
854855
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
855856

857+
shapes/shapes_kaleidoscope: shapes/shapes_kaleidoscope.c
858+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
859+
856860
shapes/shapes_lines_bezier: shapes/shapes_lines_bezier.c
857861
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
858862

examples/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You may find it easier to use than other toolchains, especially when it comes to
1717
- `zig build [module]` to compile all examples for a module (e.g. `zig build core`)
1818
- `zig build [example]` to compile _and run_ a particular example (e.g. `zig build core_basic_window`)
1919

20-
## EXAMPLES COLLECTION [TOTAL: 172]
20+
## EXAMPLES COLLECTION [TOTAL: 173]
2121

2222
### category: core [40]
2323

@@ -66,7 +66,7 @@ Examples using raylib[core](../src/rcore.c) platform functionality like window c
6666
| [core_undo_redo](core/core_undo_redo.c) | <img src="core/core_undo_redo.png" alt="core_undo_redo" width="80"> | ⭐⭐⭐☆ | 5.5 | 5.6 | [Ramon Santamaria](https://github.com/raysan5) |
6767
| [core_input_actions](core/core_input_actions.c) | <img src="core/core_input_actions.png" alt="core_input_actions" width="80"> | ⭐⭐☆☆ | 5.5 | 5.6 | [Jett](https://github.com/JettMonstersGoBoom) |
6868

69-
### category: shapes [23]
69+
### category: shapes [24]
7070

7171
Examples using raylib shapes drawing functionality, provided by raylib [shapes](../src/rshapes.c) module.
7272

@@ -95,6 +95,7 @@ Examples using raylib shapes drawing functionality, provided by raylib [shapes](
9595
| [shapes_double_pendulum](shapes/shapes_double_pendulum.c) | <img src="shapes/shapes_double_pendulum.png" alt="shapes_double_pendulum" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [JoeCheong](https://github.com/Joecheong2006) |
9696
| [shapes_dashed_line](shapes/shapes_dashed_line.c) | <img src="shapes/shapes_dashed_line.png" alt="shapes_dashed_line" width="80"> | ⭐☆☆☆ | 5.5 | 5.5 | [Luís Almeida](https://github.com/luis605) |
9797
| [shapes_vector_angle](shapes/shapes_vector_angle.c) | <img src="shapes/shapes_vector_angle.png" alt="shapes_vector_angle" width="80"> | ⭐⭐☆☆ | 1.0 | 5.0 | [Ramon Santamaria](https://github.com/raysan5) |
98+
| [shapes_kaleidoscope](shapes/shapes_kaleidoscope.c) | <img src="shapes/shapes_kaleidoscope.png" alt="shapes_kaleidoscope" width="80"> | ⭐⭐☆☆ | 5.5 | 5.6 | [Hugo ARNAL](https://github.com/hugoarnal) |
9899

99100
### category: textures [26]
100101

examples/examples_list.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,3 +179,4 @@ others;easings_testbed;★★★☆;2.5;3.0;2019;2025;"Juan Miguel López";@flas
179179
others;raylib_opengl_interop;★★★★;3.8;4.0;2021;2025;"Stephan Soller";@arkanis
180180
others;embedded_files_loading;★★☆☆;3.0;3.5;2020;2025;"Kristian Holmgren";@defutura
181181
others;web_basic_window;★☆☆☆;5.6-dev;5.6-dev;2014;2025;"Ramon Santamaria";@raysan5
182+
shapes;shapes_kaleidoscope;★★☆☆;5.5;5.6;2025;2025;"Hugo ARNAL";@hugoarnal

examples/shapes/shapes_kaleidoscope.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************************
22
*
3-
* raylib [shapes] example - Kaleidoscope
3+
* raylib [shapes] example - kaleidoscope
44
*
55
* Example complexity rating: [★★☆☆] 2/4
66
*
@@ -11,7 +11,7 @@
1111
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
1212
* BSD-like license that allows static linking with closed source software
1313
*
14-
* Copyright (c) 2025-2025 Hugo ARNAL (@hugoarnal)
14+
* Copyright (c) 2025 Hugo ARNAL (@hugoarnal)
1515
*
1616
********************************************************************************************/
1717

@@ -28,7 +28,7 @@ int main(void)
2828
const int screenWidth = 800;
2929
const int screenHeight = 450;
3030

31-
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - Kaleidoscope");
31+
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - kaleidoscope");
3232

3333
int symmetry = 6;
3434
float angle = 360.0f / (float)symmetry;
38.4 KB
Loading

0 commit comments

Comments
 (0)