Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
74 lines (63 loc) · 1.91 KB

File metadata and controls

74 lines (63 loc) · 1.91 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#pragma once
#include <cstdlib>
#include <imgui.h>
typedef int ImGuiKnobFlags;
enum ImGuiKnobFlags_ {
ImGuiKnobFlags_NoTitle = 1 << 0,
ImGuiKnobFlags_NoInput = 1 << 1,
ImGuiKnobFlags_ValueTooltip = 1 << 2,
ImGuiKnobFlags_DragHorizontal = 1 << 3,
ImGuiKnobFlags_DragVertical = 1 << 4,
ImGuiKnobFlags_Logarithmic = 1 << 5,
ImGuiKnobFlags_AlwaysClamp = 1 << 6
};
typedef int ImGuiKnobVariant;
enum ImGuiKnobVariant_ {
ImGuiKnobVariant_Tick = 1 << 0,
ImGuiKnobVariant_Dot = 1 << 1,
ImGuiKnobVariant_Wiper = 1 << 2,
ImGuiKnobVariant_WiperOnly = 1 << 3,
ImGuiKnobVariant_WiperDot = 1 << 4,
ImGuiKnobVariant_Stepped = 1 << 5,
ImGuiKnobVariant_Space = 1 << 6,
};
namespace ImGuiKnobs {
struct color_set {
ImColor base;
ImColor hovered;
ImColor active;
color_set(ImColor base, ImColor hovered, ImColor active)
: base(base), hovered(hovered), active(active) {}
color_set(ImColor color) {
base = color;
hovered = color;
active = color;
}
};
bool Knob(
const char *label,
float *p_value,
float v_min,
float v_max,
float speed = 0,
const char *format = "%.3f",
ImGuiKnobVariant variant = ImGuiKnobVariant_Tick,
float size = 0,
ImGuiKnobFlags flags = 0,
int steps = 10,
float angle_min = -1,
float angle_max = -1);
bool KnobInt(
const char *label,
int *p_value,
int v_min,
int v_max,
float speed = 0,
const char *format = "%i",
ImGuiKnobVariant variant = ImGuiKnobVariant_Tick,
float size = 0,
ImGuiKnobFlags flags = 0,
int steps = 10,
float angle_min = -1,
float angle_max = -1);
}// namespace ImGuiKnobs
Morty Proxy This is a proxified and sanitized view of the page, visit original site.