Page principale | Hiérarchie des classes | Liste par ordre alphabétique | Liste des composants | Liste des fichiers | Composants | Déclarations | Pages associées

3d.h

Aller à la documentation de ce fichier.
00001 /* ***********************************************************************************
00002         Writer:         Sebastien Bloc
00003         Copyright:      2004
00004         eMail:          sebastien.bloc@free.fr
00005         URL:            http://mignonsoft.free.fr
00006 
00007         This program is free software; you can redistribute it and/or
00008         modify it under the terms of the GNU General Public License
00009         as published by the Free Software Foundation; either version 2
00010         of the License, or (at your option) any later version.
00011 
00012         This program is distributed in the hope that it will be useful,
00013         but WITHOUT ANY WARRANTY; without even the implied warranty of
00014         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015         GNU General Public License for more details.
00016         http://www.gnu.org/copyleft/gpl.html
00017 *********************************************************************************** */
00018 
00023 #ifndef INCLUDE_3D_H
00024 #define INCLUDE_3D_H
00025 
00026 // include general
00027 #include <stdio.h>
00028 #include <math.h>
00029 #include <windows.h>
00030 #include <windowsx.h>
00031 #include <commctrl.h>
00032 
00033 // gestion de la molette de la souris
00034 #include <shellapi.h>                            // pour ShellExecute
00035 #include <zmouse.h>
00036 #define GET_WHEEL_DELTA_WPARAM(wParam)  ((short)HIWORD(wParam))
00037 
00038 // include pour la 3d
00039 #include <gl\gl.h>                   // Header for OpenGL32 Lib
00040 #include <gl\glu.h>                  // GLu32 Lib
00041 #include <gl\glaux.h>                // GLaux Lib
00042 #include "arb_multisample.h"
00043 #include "trigo.h"
00044 
00045 #pragma comment(lib, "OpenGL32.lib")
00046 #pragma comment(lib, "GLu32.lib")
00047 #pragma comment(lib, "GLaux.lib")
00048 #pragma comment(lib, "comctl32.lib")
00049 
00050 // include de gestion "ordinaire"
00051 #include "MyString.h"
00052 #include "MyTree.h"
00053 #include "MyList.h"
00054 #include "MyRegistry.h"
00055 
00056 // include pour debugage
00057 #include "MyDebug.h"
00058 
00059 // macros de definition de type de face
00060 #define FACE_BACK               0
00061 #define FACE_TOP                1
00062 #define FACE_BOTTOM             2
00063 #define FACE_RIGHT              3
00064 #define FACE_LEFT               4
00065 #define FACE_FRONT              5
00066 
00067 #endif

Généré le Thu Apr 8 18:52:12 2004 pour 3D Controls par doxygen 1.3.6