#include "app/editor/graphics/polyhedral_editor_panel.h"#include <algorithm>#include <cmath>#include <string>#include <vector>#include "absl/status/status.h"#include "absl/status/statusor.h"#include "absl/strings/str_format.h"#include "app/gui/core/icons.h"#include "app/gui/plots/implot_support.h"#include "rom/snes.h"#include "imgui/imgui.h"#include "implot.h"#include "util/macro.h"Go to the source code of this file.
Namespaces | |
| namespace | yaze |
| namespace | yaze::editor |
| Editors are the view controllers for the application. | |
| namespace | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc} |
Functions | |
| constexpr ImVec4 | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kVertexColor (0.3f, 0.8f, 1.0f, 1.0f) |
| constexpr ImVec4 | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kSelectedVertexColor (1.0f, 0.75f, 0.2f, 1.0f) |
| template<typename T > | |
| T | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::Clamp (T value, T min_v, T max_v) |
| std::string | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::ShapeNameForIndex (int index) |
| uint32_t | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::ToPc (uint16_t bank_offset) |
Variables | |
| constexpr uint32_t | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kPolyTableSnes = 0x09FF8C |
| constexpr uint32_t | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kPolyEntrySize = 6 |
| constexpr uint32_t | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kPolyRegionSize = 0x74 |
| constexpr uint8_t | yaze::editor::anonymous_namespace{polyhedral_editor_panel.cc}::kPolyBank = 0x09 |