00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef FX3D_H
00022 #define FX3D_H
00023
00024
00025 #ifdef WIN32
00026 #ifndef STRICT
00027 #define STRICT
00028 #endif
00029 #include <windows.h>
00030 #endif
00031 #ifdef HAVE_GL_H
00032 #ifndef GL_GLEXT_PROTOTYPES
00033 #define GL_GLEXT_PROTOTYPES 1
00034 #endif
00035 #include <GL/gl.h>
00036 #endif
00037 #ifndef GLAPIENTRY
00038 #define GLAPIENTRY
00039 #endif
00040 #ifndef GLAPI
00041 #define GLAPI
00042 #endif
00043 #ifdef HAVE_GLU_H
00044 #include <GL/glu.h>
00045 #endif
00046
00047
00048 #include "FXVec2f.h"
00049 #include "FXVec2d.h"
00050 #include "FXVec3f.h"
00051 #include "FXVec3d.h"
00052 #include "FXVec4f.h"
00053 #include "FXVec4d.h"
00054 #include "FXQuatf.h"
00055 #include "FXQuatd.h"
00056 #include "FXMat2f.h"
00057 #include "FXMat2d.h"
00058 #include "FXMat3f.h"
00059 #include "FXMat3d.h"
00060 #include "FXMat4f.h"
00061 #include "FXMat4d.h"
00062 #include "FXRangef.h"
00063 #include "FXRanged.h"
00064 #include "FXSpheref.h"
00065 #include "FXSphered.h"
00066 #include "FXExtentf.h"
00067 #include "FXExtentd.h"
00068 #include "FXComplexf.h"
00069 #include "FXComplexd.h"
00070 #include "FXGLVisual.h"
00071 #include "FXGLContext.h"
00072 #include "FXGLCanvas.h"
00073 #include "FXGLViewer.h"
00074 #include "FXGLObject.h"
00075 #include "FXGLShape.h"
00076 #include "FXGLCone.h"
00077 #include "FXGLCube.h"
00078 #include "FXGLCylinder.h"
00079 #include "FXGLSphere.h"
00080 #include "FXGLTriangleMesh.h"
00081
00082 #ifndef FX_NO_GLOBAL_NAMESPACE
00083 using namespace FX;
00084 #endif
00085
00086 #endif