Skip to content
Snippets Groups Projects
Commit 876c689a authored by Anakin's avatar Anakin
Browse files

cleanup code

parent fa8808fe
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ GeometryEngine::GeometryEngine()
{
initializeOpenGLFunctions();
loadFile("..\\Release\\Msh\\4-Poly.msh");
loadFile("..\\Release\\Msh\\5-Poly.msh");
}
GeometryEngine::~GeometryEngine()
......
......@@ -452,11 +452,7 @@ void MshFile::analyseSegmChunks(Model * dataDestination, std::list<ChunkHeader*>
for (unsigned int tri = 0; tri < tmp_multiPolySize - 2; tri++)
// ..calculate the edge indices
for (int triEdge = 0; triEdge < 3; triEdge++)
new_segment->indices.push_back((GLuint)(tri + triEdge - ((tri % 2) * (triEdge - 1) * 2)));
}
else
{
//TODO: this shouldn't happen only once
new_segment->indices.push_back((GLuint)tmp_buffer[(tri + triEdge - ((tri % 2) * (triEdge - 1) * 2))]);
}
} // if 2 high bits are set
......@@ -478,11 +474,6 @@ void MshFile::analyseSegmChunks(Model * dataDestination, std::list<ChunkHeader*>
for (int triEdge = 0; triEdge < 3; triEdge++)
new_segment->indices.push_back((GLuint)tmp_buffer[(tri + triEdge - ((tri % 2) * (triEdge - 1) * 2))]);
}
else
{
//TODO: this shouldn't happen
std::cout << "Where am i??" << std::endl;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment