Fix bad orientation of some TMC output triangles

This commit is contained in:
Mael Rouxel-Labbé 2025-03-24 11:48:19 +01:00
parent 8952d855a9
commit 9e2a59ee6a
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ public:
const int eg1 = Cube_table::triangle_cases[t_index + 1];
const int eg2 = Cube_table::triangle_cases[t_index + 2];
local_triangles.push_back({vertices[eg0], vertices[eg1], vertices[eg2]});
local_triangles.push_back({vertices[eg2], vertices[eg1], vertices[eg0]});
}
}