<?PHP # Freeglut Web Page # This block ensures that template.php is always hit, no matter what subdirectory $slashes=substr_count ( $_SERVER['PHP_SELF'], "/"); for (;$slashes>1; $slashes--) { $require_target .= "../"; } $require_target .= "template.php"; require($require_target); # Now set the title of the page: setPageTitle("Information for Users"); # Make the header. generateHeader($_SERVER['PHP_SELF']); ?> <div class="img-right"><img src="/images/OGL.png"><BR> This is OpenGL at its finest.</div> <div class="textheader">This is better than GLUT.</div> <p>freeglut started as a GLUT clone, but now it's something much better than that. It's a GLUT replacement. Here are the features you have wanted -- and if you have ideas for more, share them!</p> <p>Below, find documentation for freeglut...</p> <div class="textheader">Check out...</div> <p><a href="/help.php">How You Can Help</a></p> <div class="textheader">Documentation</div> <p>Installation<br> <a href="/docs/install.php">How to install freeglut on various platforms</a></p> <p>Programming API<br> <a href="/docs/api.php">How to use freeglut in your applications</a></p> <?PHP generateFooter(); ?>