[examples] Added donut pie charts to shapes_pie_chart (#5277)

* Added donut chart option to pie chart example

* Increased example description buffer size

* Testing mouse trail building

* Removed unused variable

---------

Co-authored-by: Gideon Serfontein <gse@newspacesystems.com>
This commit is contained in:
GideonSerf
2025-10-16 09:53:55 +02:00
committed by GitHub
parent af068ec020
commit c6f9f76afb
3 changed files with 26 additions and 6 deletions

View File

@ -1,6 +1,3 @@
#include "raylib.h"
#include "raymath.h"
/*******************************************************************************************
*
* raylib [shapes] example - Draw a mouse trail (position history)
@ -18,6 +15,9 @@
*
********************************************************************************************/
#include "raylib.h"
#include "raymath.h"
// Define the maximum number of positions to store in the trail
#define MAX_TRAIL_LENGTH 30