test version will be rewritten before main.

This commit is contained in:
Yggdrasil75
2026-03-05 14:59:23 -05:00
parent 3d96e569c8
commit 6336d45075
7 changed files with 601 additions and 7 deletions

View File

@@ -29,7 +29,7 @@
constexpr int Dim = 3;
template<typename T, typename IndexType = uint16_t>
template<typename T, typename IndexType = uint32_t>
class Octree {
public:
using PointType = Eigen::Matrix<float, Dim, 1>;
@@ -235,7 +235,7 @@ private:
float lodFalloffRate_ = 0.1f; // Lower = better, higher = worse. 0-1
float lodMinDistance_ = 100.0f;
float maxDistance_ = size * size;
float maxDistance_ = 100000;
struct Ray {
PointType origin;