una tortuga tecnunlogo sirve rectangulo que pentagono para libreria glfrustum dibujar coordenadas animacion c++ opengl text glut

tortuga - ¿Cómo dibujo texto con GLUT/OpenGL en C++?



rectangulo opengl (4)

En general es un poco desagradable y no directo. Pruebe esta herramienta:

http://students.cs.byu.edu/~bfish/glfontdl.php

¿Cómo dibujo una cadena de texto en la pantalla usando las funciones de dibujo GLUT / OpenGL?




void RenderString(float x, float y, void *font, const char* string, RGB const& rgb) { char *c; glColor3f(rgb.r, rgb.g, rgb.b); glRasterPos2f(x, y); glutBitmapString(font, string); }

Y puedes llamarlo así;

RenderString(0.0f, 0.0f, GLUT_BITMAP_TIMES_ROMAN_24, "Hello", RGB(1.0f, 0.0f, 0.0f));