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 MCNAPI explicit Matrix(::glm::qua<float> const& q);
22
23 MCNAPI void transform3(::glm::vec3& outVec, float& outW) const;
24
25 MCNAPI void translate(float x, float y, float z);
26 // NOLINTEND
27
28public:
29 // static variables
30 // NOLINTBEGIN
31 MCNAPI static ::Matrix const& IDENTITY();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor(::glm::qua<float> const& q);
38 // NOLINTEND
39};
Definition Matrix.h:5
MCAPI Matrix(::glm::qua< float > const &q)
MCAPI void * $ctor(::glm::qua< float > const &q)
static MCAPI ::Matrix const & IDENTITY()
MCAPI void transform3(::glm::vec3 &outVec, float &outW) const
MCAPI void translate(float x, float y, float z)
Definition Alias.h:14