mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-18 13:41:26 +01:00
[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:
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user