We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19cc7a5 commit acb5a5fCopy full SHA for acb5a5f
1 file changed
src/io/load_particle.hpp
@@ -22,11 +22,6 @@ std::vector<Particle> LoadParticlesFromFile(const std::string& filename)
22
Particle temp;
23
// Match this to the file columns: x y z vx vy vz m type
24
while (in >> temp.x >> temp.y >> temp.z >> temp.vx >> temp.vy >> temp.vz >> temp.m >> temp.type) {
25
-
26
- temp.ax = 0;
27
- temp.ay = 0;
28
- temp.az = 0;
29
30
p.push_back(temp);
31
}
32
0 commit comments