| 3414 | } |
| 3415 | |
| 3416 | const char* GetStyleColorName(ImPlot3DCol idx) { |
| 3417 | static const char* color_names[ImPlot3DCol_COUNT] = { |
| 3418 | "TitleText", "InlayText", "FrameBg", "PlotBg", "PlotBorder", "LegendBg", "LegendBorder", |
| 3419 | "LegendText", "AxisText", "AxisGrid", "AxisTick", "AxisBg", "AxisBgHovered", "AxisBgActive", |
| 3420 | }; |
| 3421 | return color_names[idx]; |
| 3422 | } |
| 3423 | |
| 3424 | const ImPlot3DNextItemData& GetItemData() { return GImPlot3D->NextItemData; } |
| 3425 |