Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

fx3d.h

00001 /********************************************************************************
00002 *                                                                               *
00003 *      A d d i t i o n a l   F O X   I n c l u d e   F i l e   F o r   3 D      *
00004 *                                                                               *
00005 *********************************************************************************
00006 * Copyright (C) 1997,2002 by Jeroen van der Zijp.   All Rights Reserved.        *
00007 *********************************************************************************
00008 * This library is free software; you can redistribute it and/or                 *
00009 * modify it under the terms of the GNU Lesser General Public                    *
00010 * License as published by the Free Software Foundation; either                  *
00011 * version 2.1 of the License, or (at your option) any later version.            *
00012 *                                                                               *
00013 * This library is distributed in the hope that it will be useful,               *
00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of                *
00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU             *
00016 * Lesser General Public License for more details.                               *
00017 *                                                                               *
00018 * You should have received a copy of the GNU Lesser General Public              *
00019 * License along with this library; if not, write to the Free Software           *
00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.    *
00021 *********************************************************************************
00022 * $Id: fx3d.h,v 1.5 2002/01/18 22:42:55 jeroen Exp $                            *
00023 ********************************************************************************/
00024 #ifndef FX3D_H
00025 #define FX3D_H
00026 
00027 // OpenGL includes
00028 #ifdef WIN32
00029 #ifndef STRICT
00030 #define STRICT
00031 #endif
00032 #include <windows.h>
00033 #endif
00034 #ifdef HAVE_OPENGL
00035 #include <GL/gl.h>
00036 #include <GL/glu.h>
00037 #endif
00038 
00039 // Additional FOX includes
00040 #include "FXVec.h"
00041 #include "FXHVec.h"
00042 #include "FXQuat.h"
00043 #include "FXHMat.h"
00044 #include "FXRange.h"
00045 #include "FXDVec.h"
00046 #include "FXDHVec.h"
00047 #include "FXDQuat.h"
00048 #include "FXDHMat.h"
00049 #include "FXGLVisual.h"
00050 #include "FXGLContext.h"
00051 #include "FXGLCanvas.h"
00052 #include "FXGLViewer.h"
00053 #include "FXGLObject.h"
00054 #include "FXGLShape.h"
00055 #include "FXGLCone.h"
00056 #include "FXGLCube.h"
00057 #include "FXGLCylinder.h"
00058 #include "FXGLSphere.h"
00059 #include "FXGLTriangleMesh.h"
00060 
00061 #endif