Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void render(PointSet *pset, const std::string &outDir, const std::string &output
// Set a floor, no matter the resolution parameter
// (sometimes a wrongly estimated scale of the model can cause the resolution
// to be set unrealistically low, causing errors)
const unsigned int RES_FLOOR = 64;
const unsigned int RES_FLOOR = 128;

if (width < RES_FLOOR && height < RES_FLOOR){
double prev_width = width;
Expand Down Expand Up @@ -201,4 +201,4 @@ void render(PointSet *pset, const std::string &outDir, const std::string &output
}
}

}
}