2021-06-01 13:49:19 +00:00
|
|
|
#include <libslic3r/TriangleMesh.hpp>
|
|
|
|
#include "libslic3r/MeshSplitImpl.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
2021-06-04 12:11:39 +00:00
|
|
|
using FaceNeighborIndex = std::vector<std::array<size_t, 3>>;
|
2021-06-01 13:49:19 +00:00
|
|
|
FaceNeighborIndex its_create_neighbors_index_1(const indexed_triangle_set &its);
|
|
|
|
std::vector<Vec3i> its_create_neighbors_index_2(const indexed_triangle_set &its);
|
|
|
|
std::vector<Vec3i> its_create_neighbors_index_3(const indexed_triangle_set &its);
|
|
|
|
FaceNeighborIndex its_create_neighbors_index_4(const indexed_triangle_set &its);
|
|
|
|
//FaceNeighborIndex its_create_neighbors_index_4(const indexed_triangle_set &its);
|
|
|
|
std::vector<Vec3crd> its_create_neighbors_index_5(const indexed_triangle_set &its);
|
|
|
|
std::vector<std::array<size_t, 3>> its_create_neighbors_index_6(const indexed_triangle_set &its);
|
|
|
|
std::vector<std::array<size_t, 3>> its_create_neighbors_index_7(const indexed_triangle_set &its);
|
|
|
|
FaceNeighborIndex its_create_neighbors_index_8(const indexed_triangle_set &its);
|
2021-06-02 13:45:11 +00:00
|
|
|
std::vector<Vec3crd> its_create_neighbors_index_9(const indexed_triangle_set &its);
|
2021-06-04 12:11:39 +00:00
|
|
|
std::vector<Vec3i> its_create_neighbors_index_10(const indexed_triangle_set &its);
|
2021-06-03 18:03:55 +00:00
|
|
|
|
|
|
|
std::vector<std::vector<size_t>> create_vertex_faces_index(const indexed_triangle_set &its);
|
2021-06-01 13:49:19 +00:00
|
|
|
}
|