Skip to content

Commit 8c555ad

Browse files
author
Teseo Schneider
committed
removed ambiguity
1 parent ff9d0d0 commit 8c555ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/tetrahedralize.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Tetrahedralizer
4040
Mesh mesh;
4141

4242
std::vector<Vector3> input_vertices;
43-
std::vector<Vector3i> input_faces;
43+
std::vector<floatTetWild::Vector3i> input_faces;
4444
std::vector<int> input_tags;
4545
GEO::Mesh sf_mesh;
4646
std::unique_ptr<AABBWrapper> tree;
@@ -199,7 +199,7 @@ class Tetrahedralizer
199199
void set_meshes(const std::vector<Eigen::MatrixXd> &V, const std::vector<Eigen::MatrixXi> &F)
200200
{
201201
std::vector<std::vector<Vector3>> vs(V.size());
202-
std::vector<std::vector<Vector3i>> fs(F.size());
202+
std::vector<std::vector<floatTetWild::Vector3i>> fs(F.size());
203203

204204
if(V.size() != F.size())
205205
throw std::invalid_argument("V and F must have the same size");

0 commit comments

Comments
 (0)