#pragma once #include #include "Eigen/Dense" #include "Eigen/StdVector" EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix4i) class MeshLoader { public: static bool loadTetMesh(const std::string &filepath, std::vector &vertices, std::vector &tets); private: MeshLoader(); };