ArcdpsExtension
 
Loading...
Searching...
No Matches
ImGui_Math.h
Go to the documentation of this file.
1#pragma once
2
3#include <imgui/imgui.h>
4
5static inline ImVec2 operator+(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x + rhs, lhs.y + rhs); }
6static inline ImVec4 operator*(const ImVec4& lhs, const float rhs) { return ImVec4(lhs.x * rhs, lhs.y * rhs, lhs.z * rhs, lhs.w * rhs); }