complete rework of the user interface (using raygui)

This commit is contained in:
2026-02-27 02:58:35 +01:00
parent bd1bd79825
commit 2517a9d33b
20 changed files with 1781 additions and 586 deletions

View File

@ -1,8 +1,6 @@
#include "octree.hpp"
#include "config.hpp"
#include "util.hpp"
#include <iostream>
#include <raymath.h>
#ifdef TRACY
@ -168,11 +166,3 @@ auto Octree::CalculateForce(int node_idx, const Vector3 &pos) const -> Vector3 {
return force;
}
auto Octree::Print() const -> void {
std::cout << "Octree Start ===========================" << std::endl;
for (const auto &node : nodes) {
std::cout << "Center: " << node.mass_center << ", Mass: " << node.mass_total
<< ", Direct Children: " << node.ChildCount() << std::endl;
}
}