Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glutstrokecharacter(3glut) [osx man page]

glutStrokeCharacter(3GLUT)					       GLUT						glutStrokeCharacter(3GLUT)

NAME
glutStrokeCharacter - renders a stroke character using OpenGL. SYNTAX
#include <GLUT/glut.h> void glutStrokeCharacter(void *font, int character); ARGUMENTS
font Stroke font to use. character Character to render (not confined to 8 bits). DESCRIPTION
Without using any display lists, glutStrokeCharacter renders the character in the named stroke font. The available fonts are: GLUT_STROKE_ROMAN A proportionally spaced Roman Simplex font for ASCII characters 32 through 127. The maximum top character in the font is 119.05 units; the bottom descends 33.33 units. GLUT_STROKE_MONO_ROMAN A mono-spaced spaced Roman Simplex font (same characters as GLUT_STROKE_ROMAN) for ASCII characters 32 through 127. The maximum top character in the font is 119.05 units; the bottom descends 33.33 units. Each character is 104.76 units wide. Rendering a nonexistent character has no effect. A glTranslatef is used to translate the current model view matrix to advance the width of the character. EXAMPLE
Here is a routine that shows how to render a string of ASCII text with glutStrokeCharacter: void output(GLfloat x, GLfloat y, char *text) { char *p; glPushMatrix(); glTranslatef(x, y, 0); for (p = text; *p; p++) glutStrokeCharacter(GLUT_STROKE_ROMAN, *p); glPopMatrix(); } If you want to draw stroke font text using wide, antialiased lines, use: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_LINE_SMOOTH); glLineWidth(2.0); output(200, 225, "This is antialiased."); SEE ALSO
glutBitmapCharacter, glutStrokeWidth AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutStrokeCharacter(3GLUT)

Check Out this Related Man Page

glutStrokeCharacter(3GLUT)					       GLUT						glutStrokeCharacter(3GLUT)

NAME
glutStrokeCharacter - renders a stroke character using OpenGL. SYNTAX
#include <GLUT/glut.h> void glutStrokeCharacter(void *font, int character); ARGUMENTS
font Stroke font to use. character Character to render (not confined to 8 bits). DESCRIPTION
Without using any display lists, glutStrokeCharacter renders the character in the named stroke font. The available fonts are: GLUT_STROKE_ROMAN A proportionally spaced Roman Simplex font for ASCII characters 32 through 127. The maximum top character in the font is 119.05 units; the bottom descends 33.33 units. GLUT_STROKE_MONO_ROMAN A mono-spaced spaced Roman Simplex font (same characters as GLUT_STROKE_ROMAN) for ASCII characters 32 through 127. The maximum top character in the font is 119.05 units; the bottom descends 33.33 units. Each character is 104.76 units wide. Rendering a nonexistent character has no effect. A glTranslatef is used to translate the current model view matrix to advance the width of the character. EXAMPLE
Here is a routine that shows how to render a string of ASCII text with glutStrokeCharacter: void output(GLfloat x, GLfloat y, char *text) { char *p; glPushMatrix(); glTranslatef(x, y, 0); for (p = text; *p; p++) glutStrokeCharacter(GLUT_STROKE_ROMAN, *p); glPopMatrix(); } If you want to draw stroke font text using wide, antialiased lines, use: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_LINE_SMOOTH); glLineWidth(2.0); output(200, 225, "This is antialiased."); SEE ALSO
glutBitmapCharacter, glutStrokeWidth AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutStrokeCharacter(3GLUT)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove all JUNK character from file.

Hi Team, I have a file having size greater than 1 GB. What i want to do is to check if it contains any JUNK character (ie any special charater thats not on the key board stroke). This file has 532 column & seperated with ^~^. I have found some solution from the file, but it is for a... (4 Replies)
Discussion started by: Amit.Sagpariya
4 Replies

2. UNIX for Dummies Questions & Answers

Reading character by character - BASH

Hello every one and thanks in advance for the time you will take to think about my problem. I would like to know if it's possible (in BASH) to read a text file character after character. Exactly this is what I would like to do : Txt file : ATGCAGTTCATTGCCAAA...... (~2.5 millions... (3 Replies)
Discussion started by: sluvah
3 Replies

3. Shell Programming and Scripting

remove space

File A.txt A005 -119.5 -119.5 -100.5 A006 -120.5 -119.5 -119.3 A008 0 0 0 Output A005 -119.5 -119.5 -100.5 A006 -120.5 ... (1 Reply)
Discussion started by: asavaliya
1 Replies

4. Shell Programming and Scripting

Transpose Data form Different form

HI Guys, I have data in File A.txt RL03 RL03_A_1 RL03_B_1 RL03_C_1 RL03 -119.8 -119.5 -119.5 RL07 RL07_A_1 RL07_B_1 RL07_C_1 RL07 -119.3 -119.5 -119.5 RL15 RL15_A_1 RL15_C_1 RL15 -120.5 -119.4 RL16... (2 Replies)
Discussion started by: asavaliya
2 Replies