From 6321dd461446c8aa5bc44f8c532423d6a4633a19 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Jan 2020 13:32:19 +0100 Subject: [PATCH] Added shapes examples --- examples/README.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index b7bacbbe..dee3d54d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -4,9 +4,8 @@ Examples using raylib core platform functionality like window creation, inputs, drawing modes and system functionality. - | ## | example | image | developer | new | -|----|----------|--------|:----------:|:------:| +|----|----------|--------|:----------:|:---:| | 01 | [core_basic_window](examples/core/core_basic_window.c) | core_basic_window | ray | | | 02 | [core_input_keys](examples/core/core_input_keys.c) | core_input_keys | ray | | | 03 | [core_input_mouse](examples/core/core_input_mouse.c) | core_input_mouse | ray | | @@ -29,3 +28,25 @@ Examples using raylib core platform functionality like window creation, inputs, | 20 | [core_vr_simulator](examples/core/core_vr_simulator.c) | core_vr_simulator | ray | | | 21 | [core_loading_thread](examples/core/core_loading_thread.c) | core_loading_thread | ray | ⭐️ | | 22 | [core_scissor_test](examples/core/core_scissor_test.c) | core_scissor_test | [Chris Dill](https://github.com/MysteriousSpace) | ⭐️ | + +### category: shapes + +Examples using raylib shapes drawing functionality, mostly from [shapes](../src/shapes.c) module. + +| ## | example | image | developer | new | +|----|----------|--------|:----------:|:---:| +| 23 | [shapes_basic_shapes](examples/shapes/shapes_basic_shapes.c) | shapes_basic_shapes | ray | | +| 24 | [shapes_bouncing_ball](examples/shapes/shapes_bouncing_ball.c) | shapes_bouncing_ball | ray | ⭐️ | +| 25 | [shapes_colors_palette](examples/shapes/shapes_colors_palette.c) | shapes_colors_palette | ray | | +| 26 | [shapes_logo_raylib](examples/shapes/shapes_logo_raylib.c) | shapes_logo_raylib | ray | | +| 27 | [shapes_logo_raylib_anim](examples/shapes/shapes_logo_raylib_anim.c) | shapes_logo_raylib_anim | ray | | +| 28 | [shapes_rectangle_scaling](examples/shapes/shapes_rectangle_scaling.c) | shapes_rectangle_scaling | [Vlad Adrian](https://github.com/demizdor) | | +| 29 | [shapes_lines_bezier](examples/shapes/shapes_lines_bezier.c) | shapes_lines_bezier | ray | | +| 30 | [shapes_collision_area](examples/shapes/shapes_collision_area.c) | shapes_collision_area | ray | ⭐️ | +| 31 | [shapes_following_eyes](examples/shapes/shapes_following_eyes.c) | shapes_following_eyes | ray | ⭐️ | +| 32 | [shapes_easings_ball_anim](examples/shapes/shapes_easings_ball_anim.c) | shapes_easings_ball_anim | ray | ⭐️ | +| 33 | [shapes_easings_box_anim](examples/shapes/shapes_easings_box_anim.c) | shapes_easings_box_anim | ray | ⭐️ | +| 34 | [shapes_easings_rectangle_array](examples/shapes/shapes_easings_rectangle_array.c) | shapes_easings_rectangle_array | ray | ⭐️ | +| 35 | [shapes_draw_ring](examples/shapes/shapes_draw_ring.c) | shapes_draw_ring | [Vlad Adrian](https://github.com/demizdor) | ⭐️ | +| 36 | [shapes_draw_circle_sector](examples/shapes/shapes_draw_circle_sector.c) | shapes_draw_circle_sector | [Vlad Adrian](https://github.com/demizdor) | | +| 37 | [shapes_draw_rectangle_rounded](examples/shapes/shapes_draw_rectangle_rounded.c) | shapes_draw_rectangle_rounded | [Vlad Adrian](https://github.com/demizdor) | |