confusing formatting

This commit is contained in:
David Rose 2003-03-21 17:02:03 +00:00
parent 14cefb8241
commit dc4d911f01

View File

@ -336,9 +336,8 @@ intersects_line(double &t1, double &t2,
// Tangent.
t1 = t2 = -B /(2.0*A);
return true;
} else
if (radical < 0.0) {
} else if (radical < 0.0) {
// No real roots: no intersection with the line.
return false;
}