Commit 593c1962 by Alisa Jung

unsigned int is unsigned.

parent 960e75ea
...@@ -199,7 +199,7 @@ void Subdivision::precomputeTables(Mesh *mesh, QVector<QVector<unsigned int> > & ...@@ -199,7 +199,7 @@ void Subdivision::precomputeTables(Mesh *mesh, QVector<QVector<unsigned int> > &
//compute vertex table //compute vertex table
//Format: First entry: original vertex. Other entries: adjacent vertices. //Format: First entry: original vertex. Other entries: adjacent vertices.
QVector<QVector<unsigned int> > duplicates;//for debugging QVector<QVector<unsigned int> > duplicates;//for debugging
int offset = 0; unsigned int offset = 0;
for (unsigned int i = 0; i < vb.length(); i++){ for (unsigned int i = 0; i < vb.length(); i++){
//hat evtl viel redundanz //hat evtl viel redundanz
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment