Hymn to Beauty
C++ 3D Engine
GuiHelpers.cpp File Reference
#include "GuiHelpers.hpp"
#include <imgui.h>
#include <cmath>

Namespaces

namespace  ImGui
 

Functions

void ImGui::ShowHelpMarker (const char *description, const float sameLineOffset=0.0f)
 Helper function that inserts a help marker that displays a tooltip. More...
 
void ImGui::DraggableFloat (const char *label, float &value, float min=std::numeric_limits< float >::lowest(), float max=(std::numeric_limits< float >::max)())
 Show widget to edit a float. More...
 
void ImGui::DraggableVec2 (const char *label, glm::vec2 &value, float min=std::numeric_limits< float >::lowest(), float max=(std::numeric_limits< float >::max)())
 Show widget to edit a vec2. More...
 
void ImGui::DraggableVec3 (const char *label, glm::vec3 &value, float min=std::numeric_limits< float >::lowest(), float max=(std::numeric_limits< float >::max)())
 Show widget to edit a vec3. More...
 
void ImGui::SetNextWindowPosCenter ()
 Set the next window to be centered. More...