blob: 0fbf4a71a991d318fd518326a39383bc4dada473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
namespace Internal
{
struct Matrix44
{
Matrix44()
{
m[0][0] = 1;
m[1][1] = 1;
m[2][2] = 1;
m[3][3] = 1;
}
float m[4][4]; // ÐÐÖ÷Ïî
static Matrix44 identity;
};
}
|