LeviLamina
Loading...
Searching...
No Matches
MatrixStack.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
11public:
12 // MatrixStack inner types declare
13 // clang-format off
14 struct MatrixStackRef;
15 // clang-format on
16
17 // MatrixStack inner types define
19 public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::MatrixStack*> stack;
23 ::ll::TypedStorage<8, 8, ::Matrix*> mat;
24 // NOLINTEND
25
26 public:
27 // member functions
28 // NOLINTBEGIN
29
30 // NOLINTEND
31
32 public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCAPI_C void $dtor();
36 // NOLINTEND
37 };
38
39public:
40 // member variables
41 // NOLINTBEGIN
42 ::ll::TypedStorage<8, 40, ::std::deque<::Matrix>> stack;
43 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> sortOrigin;
44 ::ll::TypedStorage<1, 1, bool> _isDirty;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI_C ::Matrix& _pushIdentity();
51
52 MCAPI_C ::Matrix& getTop();
53
54 MCAPI_C ::MatrixStack::MatrixStackRef push(bool isSortOrigin);
55
56 MCAPI_C ::Matrix const& sortOriginTransform() const;
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCFOLD_C void $dtor();
63 // NOLINTEND
64};
Definition MatrixStack.h:10
Definition Matrix.h:5
Definition MatrixStack.h:18