MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / SliderAngle

Function SliderAngle

Source/GUI/ImGuiBinding.cpp:1506–1511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1504}
1505
1506bool SliderAngle(String label, CallStack* stack, float v_degrees_min, float v_degrees_max) {
1507 float v_rad = s_cast<float>(std::get<double>(stack->pop()));
1508 bool changed = ImGui::SliderAngle(label.c_str(), &v_rad, v_degrees_min, v_degrees_max);
1509 stack->push(s_cast<double>(v_rad));
1510 return changed;
1511}
1512
1513static ImGuiItemFlags_ getItemFlag(String flag) {
1514 switch (Switch::hash(flag)) {

Callers 4

imgui__slider_angle_retFunction · 0.85
DemoWindowWidgetsBasicFunction · 0.85
DemoWindowTablesFunction · 0.85
ShowStyleEditorMethod · 0.85

Calls 3

popMethod · 0.65
pushMethod · 0.65
c_strMethod · 0.45

Tested by

no test coverage detected