Skip to content

Commit

Permalink
mutant3d.c: raytrace(): Removed unneeded space.
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkriff committed May 3, 2012
1 parent 7372e80 commit 2e0bb91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutant3d.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void raytrace(V3f a, V3f b)
a.y += 0.5f; a.y += 0.5f;
b.x += 0.5f; b.x += 0.5f;
b.y += 0.5f; b.y += 0.5f;
d = mk_v3f( (float)fabs(b.x - a.x), d = mk_v3f((float)fabs(b.x - a.x),
(float)fabs(b.y - a.y), (float)fabs(b.z - a.z)); (float)fabs(b.y - a.y), (float)fabs(b.z - a.z));
dt = mk_v3f(1.0f / d.x, 1.0f / d.y, 1.0f / d.z); dt = mk_v3f(1.0f / d.x, 1.0f / d.y, 1.0f / d.z);
x = (int)floor(a.x); x = (int)floor(a.x);
Expand Down

0 comments on commit 2e0bb91

Please sign in to comment.