"NeHe's OpenGL Tutorials" - читать интересную книгу автора (Molofee Jeff, Stanis Tom, Brits Lionel, Bosco, Aliotta Christopher, D'Agata...)Lesson 03In the last tutorial I taught you how to display Triangles and Quads on the screen. In this tutorial I will teach you how to add 2 different types of coloring to the triangle and quad. Flat coloring will make the quad one solid color. Smooth coloring will blend the 3 colors specified at each point (vertex) of the triangle together, creating a nice blend of colors. Using the code from the last tutorial, we will be adding to the DrawGLScene procedure. I will rewrite the entire procedure below, so if you plan to modify the last lesson, you can replace the DrawGLScene procedure with the code below, or just add code to the DrawGLScene procedure that is not already in the last tutorial.
If you remember from the last tutorial, this is the section of code to draw the triangle on the left half of the screen. The next line of code will be the first time we use the command glColor3f(r,g,b). The three parameters in the brackets are red, green and blue intensity values. The values can be from 0.0f to 1.0f. It works the same way as the color values we use to clear the background of the screen. We are setting the color to red (full red intensity, no green, no blue). The line of code right after that is the first vertex (the top of the triangle), and will be drawn using the current color which is red. Anything we draw from now on will be red until we change the color to something other than red.
We've placed the first vertex on the screen, setting it's color to red. Now before we set the second vertex we'll change the color to green. That way the second vertex which is the left corner of the triangle will be set to green.
Now we're on the third and final vertex. Just before we draw it, we set the color to blue. This will be the right corner of the triangle. As soon as the glEnd() command is issued, the polygon will be filled in. But because it has a different color at each vertex, rather than one solid color throughout, the color will spread out from each corner, eventually meeting in the middle, where the colors will blend together. This is smooth coloring.
Now we will draw a solid blue colored square. It's important to remember that anything drawn after the color has been set will be drawn in that color. Every project you create down the road will use coloring in one way or another. Even in scenes where everything is texture mapped, glColor3f can still be used to tint the color of textures, etc. More on that later. So to draw our square all one color, all we have to do is set the color once to a color we like (blue in this example), then draw the square. The color blue will be used for each vertex because we're not telling OpenGL to change the color at each vertex. The final result… a solid blue square. Again, the square (quad) is drawn in a clockwise order meaning we start off looking at the back of the quad.
Finally change the code to toggle window / fullscreen mode so that the title at the top of the window is proper.
In this tutorial I have tried to explain in as much detail, how to add flat and smooth coloring to your OpenGL polygons. Play around with the code, try changing the red, green and blue values to different numbers. See what colors you can come up with. If you have comments or questions please email me. If you feel I have incorrectly commented something or that the code could be done better in some sections, please let me know. I want to make the best OpenGL tutorials I can. I'm interested in hearing your feedback. * DOWNLOAD Visual C++ Code For This Lesson. * DOWNLOAD ASM Code For This Lesson. (Conversion by Foolman) * DOWNLOAD Borland C++ Builder 5.0 Code For This Lesson. (Conversion by Neil Flynn) * DOWNLOAD Code Warrior 5 Code For This Lesson. (Conversion by Scott Lupton) * DOWNLOAD Cygwin Code For This Lesson. (Conversion by Stephan Ferraro) * DOWNLOAD Delphi Code For This Lesson. (Conversion by Peter De Jaegher) * DOWNLOAD Game GLUT Code For This Lesson. (Conversion by Milikas Anastasios) * DOWNLOAD GLUT Code For This Lesson. (Conversion by Andy Restad) * DOWNLOAD Irix Code For This Lesson. (Conversion by Lakmal Gunasekara) * DOWNLOAD Java Code For This Lesson. (Conversion by Jeff Kirby) * DOWNLOAD Jedi-SDL Code For This Lesson. (Conversion by Dominique Louis) * DOWNLOAD Linux Code For This Lesson. (Conversion by Richard Campbell) * DOWNLOAD Linux/GLX Code For This Lesson. (Conversion by Mihael Vrbanec) * DOWNLOAD Linux/SDL Code For This Lesson. (Conversion by Ti Leggett) * DOWNLOAD Mac OS Code For This Lesson. (Conversion by Anthony Parker) * DOWNLOAD Mac OS X/Cocoa Code For This Lesson. (Conversion by Bryan Blackburn) * DOWNLOAD MASM Code For This Lesson. (Conversion by Nico (Scalp)) * DOWNLOAD Power Basic Code For This Lesson. (Conversion by Angus Law) * DOWNLOAD Python Code For This Lesson. (Conversion by John) * DOWNLOAD Solaris Code For This Lesson. (Conversion by Lakmal Gunasekara) * DOWNLOAD Visual Basic Code For This Lesson. (Conversion by Ross Dawson) * DOWNLOAD Visual Fortran Code For This Lesson. (Conversion by Jean-Philippe Perois) |
||
|