Vis2 Line Renderer
Linedata-Renderer with transparancy
helper_functions.h
Go to the documentation of this file.
1#pragma once
2
3#include <glm/glm.hpp>
4#include <string>
5
12void activateImGuiStyle(bool darkMode = true, float alpha = 0.2F);
13
18unsigned int getDigitCountForUInt(unsigned int src);
void activateImGuiStyle(bool darkMode=true, float alpha=0.2F)
Needs to be called after the setup of the dear gui and changes the color theme. WARNING: lightMode is...
Definition: helper_functions.cpp:6
unsigned int getDigitCountForUInt(unsigned int src)
Returns the count of digits of the given unsined int. Example: getDigitCountForUInt(21349) = 5
Definition: helper_functions.cpp:84