AI_Matrix.h
Go to the documentation of this file.00001 #ifndef AI_MATRIX_H 00002 #define AI_MATRIX_H 00003 //------------------------------------------------------------------- 00004 // CLASSES 00005 // AI_Matrix33 -- 3x3 matrix 00006 // matrix34 -- 3x4 matrix 00007 // AI_Matrix44 -- 4x4 matrix 00008 //------------------------------------------------------------------- 00009 //#include "kernel/ntypes.h" 00010 00011 #ifndef __USE_SSE__ 00012 #include "AI_TMatrix33.h" 00013 #include "AI_TMatrix44.h" 00014 typedef AI_TMatrix33 AI_Matrix33; 00015 typedef AI_TMatrix44 AI_Matrix44; 00016 #else 00017 #include "AI_TMatrix33SSE.h" 00018 #include "AI_TMatrix44SSE.h" 00019 typedef AI_TMatrix33SSE AI_Matrix33; 00020 typedef AI_TMatrix44SSE AI_Matrix44; 00021 #endif 00022 00023 //------------------------------------------------------------------- 00024 #endif