Lines Matching refs:DragFloat
513 ImGui::DragFloat("drag float", &f1, 0.005f);
514 ImGui::DragFloat("drag small float", &f2, 0.0001f, 0.0f, 0.0f, "%.06f ns");
1648 ImGui::DragFloat("float##1", &f);
1654 ImGui::DragFloat("float##2", &f);
1660 ImGui::DragFloat("float##3", &f);
1666 ImGui::DragFloat("float##4", &f);
1672 ImGui::DragFloat("float##5", &f);
2145 ImGui::DragFloat("##Value", &value, 0.1f, 0.0f, 0.0f);
2930 ImGui::DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); // Scale only this font
2990 if (ImGui::DragFloat("this window scale", &window_scale, 0.005f, 0.3f, 2.0f, "%.2f")) // scale only this window
2992 ImGui::DragFloat("global scale", &io.FontGlobalScale, 0.005f, 0.3f, 2.0f, "%.2f"); // scale everything
3003 ImGui::DragFloat("Curve Tessellation Tolerance", &style.CurveTessellationTol, 0.02f, 0.10f, FLT_MAX, "%.2f", 2.0f);
3005 ImGui::DragFloat("Global Alpha", &style.Alpha, 0.005f, 0.20f, 1.0f, "%.2f"); // Not exposing zero here so user doesn't "lose" the UI (zero alpha clips all widgets). But application code could have a toggle to switch between zero and non-zero.
3711 ImGui::DragFloat("##value", &dummy_members[i], 0.01f);
3958 ImGui::DragFloat("Size", &sz, 0.2f, 2.0f, 72.0f, "%.0f");
3959 ImGui::DragFloat("Thickness", &thickness, 0.05f, 1.0f, 8.0f, "%.02f");