| 34 | } |
| 35 | |
| 36 | virtual MeshPtr load_data( |
| 37 | const Eigen::Ref<const VectorF>& vertices, |
| 38 | const Eigen::Ref<const VectorI>& faces, |
| 39 | const Eigen::Ref<const VectorI>& voxels, |
| 40 | size_t dim, size_t vertex_per_face, size_t vertex_per_voxel) { |
| 41 | return MeshFactory().load_data(vertices, faces, voxels, |
| 42 | dim, vertex_per_face, vertex_per_voxel).create(); |
| 43 | } |
| 44 | |
| 45 | virtual MeshPtr load_data( |
| 46 | const Eigen::Ref<const MatrixFr>& vertices, |
no test coverage detected