ENH: Use Eigen array for mesh indices

WIP: Rename "Prims" to "Indices"

WIP: Use Eigen array for mesh indices

WIP: Remvoe Primitive::apply
This commit is contained in:
David Allemang
2023-02-06 12:07:43 -05:00
parent a3073fc659
commit 3fe8cc8d16
3 changed files with 70 additions and 131 deletions

View File

@@ -11,7 +11,7 @@
#include "combo_iterator.hpp"
template<unsigned N>
using Prims = Eigen::Matrix<unsigned, N, Eigen::Dynamic>;
using Indices = Eigen::Array<unsigned, N, Eigen::Dynamic>;
template<int N>
using vec = Eigen::Matrix<float, N, 1>;