LeviLamina
Loading...
Searching...
No Matches
Quaternion.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Matrix;
8// clang-format on
9
10class Quaternion {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 Quaternion& operator=(Quaternion const&);
20 Quaternion(Quaternion const&);
21 Quaternion();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI explicit Quaternion(::Matrix const& rot);
27 // NOLINTEND
28
29public:
30 // static functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI static ::glm::qua<float> eulerAnglesToQuaternion(float pitch, float yaw, float roll);
34#endif
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void* $ctor(::Matrix const& rot);
41 // NOLINTEND
42};
Definition Matrix.h:10
MCAPI void * $ctor(::Matrix const &rot)
MCAPI Quaternion(::Matrix const &rot)
Definition Alias.h:14