comparison utils.h @ 4:035d3880da04

render text with number of elements on screen
author Dennis C. M. <dennis@denniscm.com>
date Mon, 12 Jun 2023 23:10:08 +0100
parents
children 6be2faa7ed6e
comparison
equal deleted inserted replaced
3:e4003f606e07 4:035d3880da04
1 #ifndef UTILS_H
2 #define UTILS_H
3
4 #include <stdio.h>
5 #include <GL/glut.h>
6 #include <math.h>
7
8
9 void render_text(const char *text, float x, float y);
10
11 #endif