show/hide this revision's text 3 notes and correction to include files

I`d do something like this:

ifstream f("data.txt");
string str;
while (getline(f, str)) {
    Point p;
    sscanf(str.c_str(), "%f, %f, %f\n", &p.x, &p.y, &p.z); 
    points.push_back(p);
}

x,y,z must be floats.

And include:

#include <cstdio>
<iostream>
#include <fstream>
show/hide this revision's text 2 EDIT: Codified last paragraph to make "<cstdio>" visible.

I`d do something like this:

ifstream f("data.txt");
string str;
while (getline(f, str)) {
    Point p;
    sscanf(str.c_str(), "%f, %f, %f\n", &p.x, &p.y, &p.z);
    points.push_back(p);
}

And include:

#include <cstdio>
show/hide this revision's text 1

I`d do something like this:

ifstream f("data.txt");
string str;
while (getline(f, str)) {
    Point p;
    sscanf(str.c_str(), "%f, %f, %f\n", &p.x, &p.y, &p.z);
    points.push_back(p);
}

And include: #include