mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
added two new sections to resources.php, books and rendering info
adding books.php
This commit is contained in:
parent
e7855cc268
commit
fa65563cc0
3 changed files with 45 additions and 1 deletions
34
research/books.php
Normal file
34
research/books.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Books";
|
||||
require("../parts/library.php"); // Load function library
|
||||
include("../parts/head.php"); // Load the HEAD and open BODY
|
||||
include("../parts/topstrip.php"); // Display top strip
|
||||
include("../parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("../parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "../parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
No content yet, please be patient.
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("../parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
|
@ -18,7 +18,7 @@
|
|||
include( "../parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
<br><a href="http://quake.sourceforge.net/files/carmack.mp3">Carmack Lecture at Razor CPL .mp3</a>
|
||||
<br><a href="http://quake.sourceforge.net/files/carmack.mp3">Carmack Lecture at Razor CPL .mp3</a><br>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
|
|
|
@ -25,6 +25,16 @@
|
|||
<table width="90%" cellspacing="0" cellpadding="0" bgcolor="#000000" border="0">
|
||||
<tr align="center">
|
||||
<td><font size="1">
|
||||
<a href="research/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="research/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="research/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>
|
||||
|
|
Loading…
Reference in a new issue