00001 00008 /* 00009 This file is part of Teapot Colony Wars. 00010 00011 Teapot Colony Wars is free software: you can redistribute it and/or modify 00012 it under the terms of the GNU General Public License as published by 00013 the Free Software Foundation, either version 2 of the License, or 00014 (at your option) any later version. 00015 00016 Teapot Colony Wars is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 GNU General Public License for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with Teapot Colony Wars. If not, see <http://www.gnu.org/licenses/>. 00023 */ 00024 00025 /* 00026 * Copyright (c) 1993-1997, Silicon Graphics, Inc. 00027 * ALL RIGHTS RESERVED 00028 * Permission to use, copy, modify, and distribute this software for 00029 * any purpose and without fee is hereby granted, provided that the above 00030 * copyright notice appear in all copies and that both the copyright notice 00031 * and this permission notice appear in supporting documentation, and that 00032 * the name of Silicon Graphics, Inc. not be used in advertising 00033 * or publicity pertaining to distribution of the software without specific, 00034 * written prior permission. 00035 * 00036 * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" 00037 * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, 00038 * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR 00039 * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON 00040 * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, 00041 * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY 00042 * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, 00043 * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF 00044 * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN 00045 * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON 00046 * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE 00047 * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. 00048 * 00049 * US Government Users Restricted Rights 00050 * Use, duplication, or disclosure by the Government is subject to 00051 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph 00052 * (c)(1)(ii) of the Rights in Technical Data and Computer Software 00053 * clause at DFARS 252.227-7013 and/or in similar or successor 00054 * clauses in the FAR or the DOD or NASA FAR Supplement. 00055 * Unpublished-- rights reserved under the copyright laws of the 00056 * United States. Contractor/manufacturer is Silicon Graphics, 00057 * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. 00058 * 00059 * OpenGL(R) is a registered trademark of Silicon Graphics, Inc. 00060 */ 00061 00062 #ifndef ACCUM_H 00063 #define ACCUM_H 00064 00065 #include <GL/glut.h> 00066 00083 void accFrustum(GLdouble left, GLdouble right, GLdouble bottom, 00084 GLdouble top, GLdouble near, GLdouble far, GLdouble pixdx, 00085 GLdouble pixdy, GLdouble eyedx, GLdouble eyedy, GLdouble focus); 00086 00104 void accPerspective(GLdouble fovy, GLdouble aspect, 00105 GLdouble near, GLdouble far, GLdouble pixdx, GLdouble pixdy, 00106 GLdouble eyedx, GLdouble eyedy, GLdouble focus); 00107 00108 #endif // ACCUM_H