LeviLamina
Loading...
Searching...
No Matches
LinePrimitive.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/editor/services/render_helper/BasePrimitivePosition.h"
7#include "mc/editor/services/render_helper/PrimitiveType.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Vec3;
13namespace Editor::RenderHelper { struct Vertex; }
14// clang-format on
15
16namespace Editor::RenderHelper {
17
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 LinePrimitive& operator=(LinePrimitive const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 4
37 virtual ~LinePrimitive() /*override*/ = default;
38
39 // vIndex: 2
40 virtual void setPosition(::Vec3 const&) /*override*/;
41
42 // vIndex: 0
43 virtual ::Editor::RenderHelper::PrimitiveType getType() const /*override*/;
44
45 // vIndex: 3
46 virtual void updateBoundingBox(::Vec3 const&, ::AABB&) const /*override*/;
47
48 // vIndex: 5
49 virtual void _rebuild() /*override*/;
50
51 // vIndex: 6
52 virtual void _getVertices(::std::vector<::Editor::RenderHelper::Vertex>&) /*override*/;
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64
65 // NOLINTEND
66};
67
68} // namespace Editor::RenderHelper
Definition AABB.h:16
Definition BasePrimitivePosition.h:16
Definition LinePrimitive.h:18
Definition Vec3.h:10
Definition Alias.h:14