[examples]: New shapes example - double pendulum

This commit is contained in:
Joecheong2006
2025-07-21 14:59:51 -07:00
parent 7b017b60d9
commit f1714a6234
5 changed files with 300 additions and 106 deletions

View File

@ -430,7 +430,8 @@ SHAPES = \
shapes/shapes_rectangle_scaling \
shapes/shapes_splines_drawing \
shapes/shapes_top_down_lights \
shapes/shapes_digital_clock
shapes/shapes_digital_clock \
shapes/shapes_double_pendulum
TEXTURES = \
textures/textures_background_scrolling \
@ -731,6 +732,9 @@ shapes/shapes_top_down_lights: shapes/shapes_top_down_lights.c
shapes/shapes_rectangle_advanced: shapes/shapes_rectangle_advanced.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
shapes/shapes_double_pendulum: shapes/shapes_double_pendulum.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
# Compile TEXTURES examples
textures/textures_background_scrolling: textures/textures_background_scrolling.c