Skip to content

Commit

Permalink
Removed stray debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmb committed May 27, 2017
1 parent df033f3 commit 1d5be07
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion euler.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,6 @@ void advect_markers(float dt) {
for (size_t i = 0; i < N; ++i) {
vec2f p = g_markers[i];
vec2f v = velocity_at(p);
fprintf(stderr, "m[%2lu] | p: %f,%f v: %f,%f\n", i, p.x(), p.y(), v.x(), v.y());
if (v.x() == 0.f && v.y() == 0.f) {
continue;
}
Expand Down

0 comments on commit 1d5be07

Please sign in to comment.