website/research/index.php

57 lines
2.4 KiB
PHP

<? // Preamble
$pageName = "QuakeForge Institute";
$focused = "none"; // Dock icon name to gets a border
require("../parts/preamble.php"); // Load most of document
?>
<P>
<center><font size="+2">Welcome to the QuakeForge Research Resource</font><hr>
<br>In the future, this space will provide 3D programming resources chosen by our developers as interesting or essential
for work on enhancing the QuakeForge engine. Bookmark this page. There a smidgen of content at the moment but it's growing.
<br><br>
<table width="90%" cellspacing="0" cellpadding="0" bgcolor="#000000" border="0">
<tr align="center">
<td><font size="1">
<a href="api.php">
<font size="2"><b>API</b></font></a>
<br>Open specifications, libraries, etc.<br></font>
</td><td><font size="1">
<a href="diagrams.php">
<font size="2"><b>Diagrams</b></font></a>
<br>3D concepts, audio concepts, networking concepts, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="books.php">
<font size="2"><b>Relevant Books</b></font></a>
<br>OpenGL, Mathematics, Theory, Game programming, etc.<br></font>
</td><td><font size="1">
<a href="engines.php">
<font size="2"><b>Rendering engines and/or concepts</b></font></a>
<br>Complete 3D engines, partial 3D engines, portal engines, BSP maps, model and texture implementations, steps/explainations for implementing, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="mathalgo.php">
<font size="2"><b>Mathematical Algorithms</b></font></a>
<br>Surface Subdivison, Illumination, Reflections, Shadows, Shaders, Polygons, Vector Space, Affine Arithmetic, Bezier Curves, B-Spline Curves, Compression & Encryption, etc.<br></font>
</td><td><font size="1">
<a href="soundbytes.php">
<font size="2"><b>Sound Bytes</b></font></a>
<br>Speeches, Lectures, Events, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="tut.php">
<font size="2"><b>Tutorials</b></font></a>
<br>Explainations of 3D engine development, networking, Quake specific archiecture, engine features, etc.<br></font>
</td><td><font size="1">
<a href="misc.php">
<font size="2"><b>Misc. Texts</b></font></a>
<br>Interviews, philosophy, theories, etc.<br></font>
</td></tr></table>
<br><br>
<hr>Page last updated: April, 19th 2000<br>
<?
require("../parts/postamble.php"); // Finish this sucker up
?>