NcEngine
ImGuiConversion.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncmath/Vector.h"
8
12#define IM_VEC2_CLASS_EXTRA \
13 constexpr ImVec2(const nc::Vector2& v) noexcept \
14 : x{v.x}, y{v.y} \
15 { \
16 } \
17 \
18 constexpr operator nc::Vector2() const noexcept \
19 { \
20 return nc::Vector2{x, y}; \
21 } \
22
23#define IM_VEC3_CLASS_EXTRA \
24 constexpr ImVec3(const nc::Vector3& v) noexcept \
25 : x{v.x}, y{v.y}, z{v.z} \
26 { \
27 } \
28 \
29 constexpr operator nc::Vector3() const noexcept \
30 { \
31 return nc::Vector3{x, y, z}; \
32 }
33
34#define IM_VEC4_CLASS_EXTRA \
35 constexpr ImVec4(const nc::Vector4& v) noexcept \
36 : x{v.x}, y{v.y}, z{v.z}, w{v.w} \
37 { \
38 } \
39 \
40 constexpr operator nc::Vector4() const noexcept \
41 { \
42 return nc::Vector4{x, y, z, w}; \
43 }