diff --git a/src/Primitives/Cube.cpp b/src/Primitives/Cube.cpp index ea60cf424..97695260e 100644 --- a/src/Primitives/Cube.cpp +++ b/src/Primitives/Cube.cpp @@ -20,18 +20,18 @@ using namespace std; namespace Magnum { namespace Primitives { Cube::Cube(): MeshData(Mesh::Primitive::Triangles, new vector{ - 0, 1, 2, - 2, 1, 3, - 1, 5, 3, - 3, 5, 7, - 5, 4, 7, - 7, 4, 6, - 4, 0, 6, - 6, 0, 2, - 2, 3, 7, - 2, 7, 6, - 4, 5, 1, - 4, 1, 0 + 0, 2, 1, + 2, 3, 1, + 1, 3, 5, + 3, 7, 5, + 5, 7, 4, + 7, 6, 4, + 4, 6, 0, + 6, 2, 0, + 2, 7, 3, + 2, 6, 7, + 4, 1, 5, + 4, 0, 1 }, {new vector}, {new vector{ {-1.0f, -1.0f, -1.0f}, { 1.0f, -1.0f, -1.0f},