36 lines
680 B
C
36 lines
680 B
C
#ifndef N_MATRIX_H
|
|
#define N_MATRIX_H
|
|
//------------------------------------------------------------------------------
|
|
/**
|
|
matrix33 -- 3x3 matrix
|
|
matrix34 -- 3x4 matrix
|
|
matrix44 -- 4x4 matrix
|
|
|
|
@author
|
|
- RadonLabs GmbH
|
|
@since
|
|
- 2005.7.06
|
|
@remarks
|
|
- Áö¿Ï Ãß°¡
|
|
*/
|
|
#include "../ProgramCommon/Define.h"
|
|
|
|
#ifdef __USE_SSE__
|
|
|
|
#include "_matrix33_sse.h"
|
|
#include "_matrix44_sse.h"
|
|
typedef _matrix33_sse matrix33;
|
|
typedef _matrix44_sse matrix44;
|
|
|
|
#else
|
|
|
|
#include "_matrix33.h"
|
|
#include "_matrix44.h"
|
|
typedef _matrix33 matrix33;
|
|
typedef _matrix44 matrix44;
|
|
|
|
#endif
|
|
|
|
//-------------------------------------------------------------------
|
|
#endif
|