We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7573599 commit 5c94554Copy full SHA for 5c94554
Libs/Particles/ParticleSystemEvaluation.cpp
@@ -18,11 +18,6 @@ ParticleSystemEvaluation::ParticleSystemEvaluation(const std::vector<std::string
18
const int VDimension = 3;
19
assert(N > 0);
20
21
- // TODO: We're using the existing particle file reader here. This is not ideal
22
- // since this particle reader loads into a std::vector, which subsequently
23
- // is copied to Eigen. Refactor it to load directly to Eigen. (This is not a
24
- // huge problem for now because the particle files are quite small)
25
-
26
// Read the first file to find dimensions
27
auto points0 = particles::read_particles_as_vector(paths_[0]);
28
const int D = points0.size() * VDimension;
0 commit comments