feat: add eigen vector type

This commit is contained in:
parker
2025-07-02 12:43:20 +01:00
parent 6463fe2a7f
commit f1d825d513
8 changed files with 66 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
#pragma once
#include <Eigen/Dense>
namespace enzo
{
@@ -22,4 +23,10 @@ namespace enzo
using AttrType = AttributeType;
using AttrOwner = AttributeOwner;
}
// basic types types
namespace bt
{
using Vector3 = Eigen::Vector3d;
using Vector4 = Eigen::Vector4d;
}
}