feat: add C++ support with ImGui/ImPlot framework and vendor submodules

Añade soporte C++ al registry: vendor submodules (glfw, imgui, implot, tracy),
sistema de build con CMake y toolchains cross-platform, runner C++ en fn CLI,
parser de tests Google Test, y funciones bash para build Linux/Windows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 23:46:36 +02:00
parent 0c759c1b66
commit 4b2bb6998a
36 changed files with 1065 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#pragma once
// Renders a scatter plot using ImPlot.
// Call within an ImGui frame.
void scatter_plot(const char* title, const float* xs, const float* ys, int count);
void scatter_plot(const char* title, const double* xs, const double* ys, int count);