Добавлены матрицы 2x3 и 3x2, добавлены произведения матриц. Изменения в названиях функций
This commit is contained in:
parent
86486ac9cf
commit
049f09f3d4
31 changed files with 1831 additions and 1314 deletions
|
@ -1,24 +1 @@
|
|||
#include "matrix2x2.h"
|
||||
|
||||
#include <math.h>
|
||||
#include "angle.h"
|
||||
|
||||
const SPMatrix2x2 SP_ZERO_MATRIX2X2 = {
|
||||
0.0f, 0.0f,
|
||||
0.0f, 0.0f
|
||||
};
|
||||
|
||||
const DPMatrix2x2 DP_ZERO_MATRIX2X2 = {
|
||||
0.0, 0.0,
|
||||
0.0, 0.0
|
||||
};
|
||||
|
||||
const SPMatrix2x2 SP_IDENTITY_MATRIX2X2 = {
|
||||
1.0f, 0.0f,
|
||||
0.0f, 1.0f
|
||||
};
|
||||
|
||||
const DPMatrix2x2 DP_IDENTITY_MATRIX2X2 = {
|
||||
1.0, 0.0,
|
||||
0.0, 1.0
|
||||
};
|
||||
#include "matrix2x2.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue