
00001 00002 /***************************************************************************** 00003 * 00004 pdefs.h - pphigs support #defines & typedefs 00005 00006 - stolen from /usr/proj/pxpl/include/pphigs.h 00007 * 00008 *****************************************************************************/ 00009 00010 #ifndef Q_PDEFS_INCLUDED 00011 #define Q_PDEFS_INCLUDED 00012 00013 /* This MAJORLY screws up Windows programming, and possibly others too. */ 00014 #if 0 00015 #define X 0 00016 #define Y 1 00017 #define Z 2 00018 #define W 3 00019 #endif 00020 00021 typedef float Q_VectorType[3]; /* Vector in three-space */ 00022 00023 typedef float Q_MatrixType[3][4]; /* Transformation Matrix */ 00024 00025 #endif /* Q_PDEFS_INCLUDED */ 00026
1.4.4