1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

[slider] Logarithmic sliders with support for zero and infinity

Logarithmic sliders will intelligently help you pick a good range
even if you inlcude zero or infinity. They also support crossing
the zero value, so you can have a slider span -INF to +INF.

The sliders now also supports reversed sliders (large -> small).
This commit is contained in:
Emil Ernerfeldt
2020-10-07 09:59:49 +02:00
parent d5d8eeb172
commit 8ff0bed259
10 changed files with 409 additions and 41 deletions

View File

@@ -89,7 +89,7 @@ Alpha state. It works well for what it does, but it lacks many features and the
### Features
* Widgets: label, text button, hyperlink, checkbox, radio button, slider, draggable value, text editing
* Widgets: label, text button, hyperlink, checkbox, radio button, slider, draggable value, text editing, combo box, color picker
* Layouts: horizontal, vertical, columns
* Text input: very basic, multiline, copy/paste
* Windows: move, resize, name, minimize and close. Automatically sized and positioned.