Advertisement

Lesson 13.

Started by September 16, 2000 12:24 PM
1 comment, last by Ryball 22 years, 10 months ago
I manage to understand most of the lessons so far, and i allso understand lesson 13 but i whant it to do a bit more, like making a nice scroll text. How can i change the the glPrint function so you can display eatch char in the list on different positions on the screen ? I''ll try to ilustrate it . glPrint("Test One"); ok i want this to be displayed like this : . . . . . . . . . .. .. each dot reprisent a char and they will follow the Sinus curve. Anyone know what need to be changed in the glPrint Func ? -------------- --- Ryball --- --------------
----------------- Ryball -----------------
I need an answer to this to :/
Does annyone know how to do?
Advertisement
Simple... Just use glRasterPos2f, like this:

glRasterPos2f(1,1);
glPrint("Character 1");

glRasterPos2f(2,3);
glPrint("Character 2");

If thispost = 0 Then
GoBack()

Else
Read()
End If
I'll have a link to the TriFaze website as soon as possible. It's still currently being designed, by myself of course! =) I'll update the URL and my signature as soon as possible.Feel free to send me a message on Yahoo! or AOL IM™. =)

This topic is closed to new replies.

Advertisement