Missed a few corrections in the previous commit.

This commit is contained in:
barfowl 2015-05-21 20:14:46 -07:00
parent 6d5b29c2dc
commit 04de3a37d9
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ int main(int, char **) {
{ // Output OBJ of the highest level refined -----------
Far::TopologyLevel const & refLastLevel = refiner->GetLevel(maxlevel).
Far::TopologyLevel const & refLastLevel = refiner->GetLevel(maxlevel);
// Print vertex positions
for (int level=0, firstVert=0; level<=maxlevel; ++level) {

View File

@ -180,7 +180,7 @@ int main(int, char **) {
// Print vertex positions
for (int level=1, firstvert=0; level<=maxlevel; ++level) {
Far::TopologyLevel conat & refLevel = refiner->GetLevel(level);
Far::TopologyLevel const & refLevel = refiner->GetLevel(level);
printf("g level_%d\n", level);