33 lines
674 B
C
33 lines
674 B
C
#ifndef N_MATRIXDEFS_H
|
|
#define N_MATRIXDEFS_H
|
|
//------------------------------------------------------------------------------
|
|
/**
|
|
Common defines for matrix classes.
|
|
@author
|
|
- RadonLabs GmbH
|
|
@since
|
|
- 2005.7.06
|
|
@remarks
|
|
- Áö¿Ï Ãß°¡
|
|
*/
|
|
|
|
#define M11 m[0][0]
|
|
#define M12 m[0][1]
|
|
#define M13 m[0][2]
|
|
#define M14 m[0][3]
|
|
#define M21 m[1][0]
|
|
#define M22 m[1][1]
|
|
#define M23 m[1][2]
|
|
#define M24 m[1][3]
|
|
#define M31 m[2][0]
|
|
#define M32 m[2][1]
|
|
#define M33 m[2][2]
|
|
#define M34 m[2][3]
|
|
#define M41 m[3][0]
|
|
#define M42 m[3][1]
|
|
#define M43 m[3][2]
|
|
#define M44 m[3][3]
|
|
|
|
//------------------------------------------------------------------------------
|
|
#endif
|