22constexpr ImVec4
operator+(
const ImVec4& lhs,
const ImVec4& rhs)
24 return { lhs.x + rhs.x,
34constexpr ImVec4
operator-(
const ImVec4& lhs,
const ImVec4& rhs)
36 return { lhs.x - rhs.x,
46constexpr ImVec4
operator*(
const float& lhs,
const ImVec4& rhs)
58constexpr ImVec4
operator*(
const ImVec4& lhs,
const float& rhs)
70constexpr ImVec4
operator/(
const ImVec4& lhs,
const float& rhs)
constexpr ImVec4 operator+(const ImVec4 &lhs, const ImVec4 &rhs)
Add operator.
Definition ImGui.hpp:22
constexpr ImVec4 operator*(const float &lhs, const ImVec4 &rhs)
Scalar multiplication operator.
Definition ImGui.hpp:46
constexpr ImVec4 operator-(const ImVec4 &lhs, const ImVec4 &rhs)
Subtract operator.
Definition ImGui.hpp:34
constexpr ImVec4 operator/(const ImVec4 &lhs, const float &rhs)
Scalar multiplication operator.
Definition ImGui.hpp:70