LeviLamina
Loading...
Searching...
No Matches
Matrix.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Matrix {
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
14 Matrix& operator=(Matrix const&);
15 Matrix(Matrix const&);
16 Matrix();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI explicit Matrix(::glm::qua<float> const& q);
22
23 MCAPI void transform3(::glm::vec3& outVec, float& outW) const;
24
25 MCAPI void translate(::glm::vec3 const& t);
26 // NOLINTEND
27
28public:
29 // static variables
30 // NOLINTBEGIN
31 MCAPI static ::Matrix const& IDENTITY();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::glm::qua<float> const& q);
38 // NOLINTEND
39};
Definition Matrix.h:5
Definition Alias.h:14