36 ImGui::Begin(
"Data error",
nullptr, window_flags);
37 ImGui::Text(
"Data has different dimension than transformed data.");
38 if (ImGui::Button(
"OK")) {
46 ImGui::Begin(
"Data error",
nullptr, window_flags);
47 ImGui::Text(
"Data has different dimension than scaled data.");
48 if (ImGui::Button(
"OK")) {
57 if (ImGui::Begin(
"Scale", &
show_window, window_flags)) {
64 ImGui::Text(
"No columns were detected.");
69 ImGui::BeginTable(
"##tabletrans", 6);
70 ImGui::TableNextColumn();
71 ImGui::TableNextColumn();
73 ImGui::TableNextColumn();
74 ImGui::Text(
"asinh cofactor");
75 ImGui::TableNextColumn();
76 ImGui::Text(
"affine adjust");
77 ImGui::TableNextColumn();
79 ImGui::TableNextColumn();
82 for (
size_t i = 0; i < dim; ++i) {
83 ImGui::TableNextColumn();
86 ImGui::TableNextColumn();
87 std::string name =
"##asinh" + std::to_string(i);
88 if (ImGui::Checkbox(name.data(), &state.
trans.
config[i].asinh))
91 ImGui::TableNextColumn();
93 name =
"##asinh_cofactor" + std::to_string(i);
94 if (ImGui::SliderFloat(name.data(),
99 ImGuiSliderFlags_AlwaysClamp))
102 ImGui::TableNextColumn();
104 name =
"##affine_adjust" + std::to_string(i);
105 if (ImGui::SliderFloat(name.data(),
110 ImGuiSliderFlags_AlwaysClamp))
113 ImGui::TableNextColumn();
114 name =
"##scale" + std::to_string(i);
115 if (ImGui::Checkbox(name.data(), &state.
scaled.
config[i].scale))
118 ImGui::TableNextColumn();
120 name =
"##sdev" + std::to_string(i);
121 if (ImGui::SliderFloat(name.data(),
126 ImGuiSliderFlags_AlwaysClamp))
std::vector< std::string > names
Names of the dimensions.
std::vector< ScaleConfig > config
Separate configurations for each dimension.
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
size_t dim() const
Returns dimension of the scaled data.
void reset()
Resets configurations to their initial values.
Storage of data of used algorithms and input events.
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
size_t dim() const
Returns dimension of the transformed data.
void reset()
Resets configurations to their initial values.
std::vector< TransConfig > config
Separate configurations for each dimension.
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding scale&transform widgets.
bool show_window
If the scale&transform window should be rendered.
static constexpr float slider_width
Width of the sliders in the table.
static bool reset_button()
ImGUI wrapper for reset button.