CommonLibSSE (powerof3)
GMatrix3D.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  class GMatrix3D
6  {
7  public:
8  GMatrix3D() = default;
9 
10  GMatrix3D& operator=(const GMatrix3D& a_rhs)
11  {
12  for (std::size_t i = 0; i < std::extent<decltype(data), 0>::value; ++i) {
13  for (std::size_t j = 0; j < std::extent<decltype(data), 1>::value; ++j) {
14  data[i][j] = a_rhs.data[i][j];
15  }
16  }
17  return *this;
18  }
19 
20  float data[4][4]{}; // 00
21  };
22  static_assert(sizeof(GMatrix3D) == 0x40);
23 }
Definition: GMatrix3D.h:6
GMatrix3D & operator=(const GMatrix3D &a_rhs)
Definition: GMatrix3D.h:10
GMatrix3D()=default
float data[4][4]
Definition: GMatrix3D.h:20
Definition: AbsorbEffect.h:6