Fix typo in example comments

This commit is contained in:
Simon Giraudot 2017-05-24 14:20:23 +02:00
parent 7377073ab6
commit d4f6db6234
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ typedef std::pair<Point, Color> PointWithColor;
int main(int argc, char*argv[]) int main(int argc, char*argv[])
{ {
const char* fname = (argc>1) ? argv[1] : "data/pig_points.las"; const char* fname = (argc>1) ? argv[1] : "data/pig_points.las";
// Reads a .ply point set file with normal vectors and colors // Reads a .las point set file with normal vectors and colors
std::vector<PointWithColor> points; // store points std::vector<PointWithColor> points; // store points
std::ifstream in(fname); std::ifstream in(fname);