1UNTITLED LOCAL UNTITLED
2
4 glutStrokeCharacter — Draw a stroked character.
5
7 OpenGLUT - fonts
8
10 #include <openglut.h>
11
12 void
13 glutStrokeCharacter(void *fontID, int character);
14
16 fontID A GLUT stroked font identifier.
17
18 character An ASCII character other than NUL.
19
21 This function draws one character from one stroked font (selected by
22 fontID) using OpenGL GL_LINE_STRIP. These characters are drawn at
23 the origin in model space. The the model space origin is translated at
24 the end, according to the character width in fontID.
25
26 Does nothing if:
27 - The fontID is invalid.
28 - The character is out of the font's range.
29
31 glBegin(3) glTranslatef(3) glutStrokeWidth(3) glutStrokeString(3)
32 glutStrokeHeight(3) glutBitmapCharacter(3)
33
34
35
36
37 Epoch