| 107 | } |
| 108 | |
| 109 | void Mesh::enable_voxel_connectivity() { |
| 110 | m_connectivity->init_voxel_adjacencies(this); |
| 111 | } |
| 112 | |
| 113 | VectorI Mesh::get_vertex_adjacent_vertices(size_t vi) const { |
| 114 | return m_connectivity->get_vertex_adjacent_vertices(vi); |
no test coverage detected