> Sorry for my earlier e-mail. It was accidentally sent before I could finish
> editing it. Although the exe was created, when I run the program, the output
> is a window titled Hello but the window background was black. The polygon
> wasn't displayed.
>
> Do you have the same output?
Hello,
Those lines with the glVertex3f calls should read as:
glVertex3f(0.25, 0.25, 0.0);
glVertex3f(0.75, 0.25, 0.0);
glVertex3f(0.75, 0.75, 0.0);
glVertex3f(0.25, 0.75, 0.0);
Interesting that I should be working on the *exact same thing*. :)
Regards,
Marshall
|