50 const char* format =
"%.6f")
58 ImGui::TableSetupColumn(
"");
60 for (int64_t col = 0; col < matrix->cols(); col++)
62 ImGui::TableSetupColumn(std::to_string(col).c_str());
64 ImGui::TableHeadersRow();
67 for (int64_t row = 0; row < matrix->rows(); row++)
71 ImGui::TableNextColumn();
72 ImGui::TextUnformatted(std::to_string(row).c_str());
73 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
74 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
77 for (int64_t col = 0; col < matrix->cols(); col++)
79 ImGui::TableNextColumn();
80 ImGui::Text(format, (*matrix)(row, col));
106 float inputTextWidth = 50.0F,
double step = 0.0,
double step_fast = 0.0,
const char* format =
"%.6f", ImGuiInputTextFlags inputTextFlags = ImGuiInputTextFlags_None)
108 bool changed =
false;
115 ImGui::TableSetupColumn(
"");
117 for (int64_t col = 0; col < matrix->cols(); col++)
119 ImGui::TableSetupColumn(std::to_string(col).c_str());
121 ImGui::TableHeadersRow();
124 for (int64_t row = 0; row < matrix->rows(); row++)
128 ImGui::TableNextColumn();
129 ImGui::TextUnformatted(std::to_string(row).c_str());
130 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
131 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
134 for (int64_t col = 0; col < matrix->cols(); col++)
136 ImGui::TableNextColumn();
137 ImGui::SetNextItemWidth(inputTextWidth);
138 if (ImGui::InputDouble(fmt::format(
"##{} ({}, {})", label, row, col).c_str(), &(*matrix)(row, col), step, step_fast, format, inputTextFlags))
void MatrixView(const char *label, const Eigen::Matrix< _Scalar, _Rows, _Cols > *matrix, GuiMatrixViewFlags flags=GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags=ImGuiTableFlags_None, const char *format="%.6f")
Shows GUI elements to display the coefficients of a matrix.
Definition Matrix.hpp:49
bool InputMatrix(const char *label, Eigen::Matrix< _Scalar, _Rows, _Cols > *matrix, GuiMatrixViewFlags flags=GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags=ImGuiTableFlags_None, float inputTextWidth=50.0F, double step=0.0, double step_fast=0.0, const char *format="%.6f", ImGuiInputTextFlags inputTextFlags=ImGuiInputTextFlags_None)
Shows GUI elements to modify the coefficients of a matrix with.
Definition Matrix.hpp:105