Skip to content
Snippets Groups Projects
Commit 61cd23e7 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Flip triangle

parent b2a6f280
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,8 @@ namespace VirtualRobot
auto addF = [&](auto v0, auto v1, auto v2, auto v3)
{
m.addFace(v0, v1, v2);
m.addFace(v0, v2, v3);
m.addFace(v1, v0, v2);
m.addFace(v2, v0, v3);
};
addF(0, 1, 2, 3);
addF(3, 2, 6, 7);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment