This repository has been archived on 2022-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
DemoGL4D/includes/animations.h

16 lines
249 B
C
Raw Normal View History

2022-05-13 20:57:05 +02:00
#ifndef DEMO_ANIMATION_HPP
#define DEMO_ANIMATION_HPP 1
#include <GL4D/gl4dh.h>
// Cube coloré qui tourne sur lui-même
void cube(int);
// Voronoi GPU
2022-05-16 13:21:24 +02:00
void voronoi(int);
// Formes en jouant avec caméra et polygones
void polygone(int);
2022-05-13 20:57:05 +02:00
#endif