mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-22 11:40:08 +00:00
Missed a few corrections in the previous commit.
This commit is contained in:
parent
6d5b29c2dc
commit
04de3a37d9
@ -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) {
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user