TazGraph Project v0.1.0
Loading...
Searching...
No Matches
OrientationBox.h
1#pragma once
2
3#include "../../../../UIElement.h"
4
5#include "TazGraphEngine.h"
6
8 ImVec2 viewportPos;
9 ImVec2 viewportSize;
10};
11
12
13class OrientationBox : public UIElement {
14public:
15 void OnImGuiRender() override;
16 void UpdateCameraFromMatrix();
17
18 void setConfig(const OrientationBoxConfig& cfg);
19
20private:
21 glm::mat4 _boxViewMatrix = glm::mat4(1.0f);
23
24};
Definition OrientationBox.h:13
Definition UIElement.h:16
Definition OrientationBox.h:7