Removing blank line.

This commit is contained in:
Patrick Shriwise 2020-08-19 23:32:27 -05:00
parent 4fa6fd4b8f
commit 1bdc9ca877

View file

@ -66,7 +66,6 @@ struct Position {
inline Position reflect(Position n) {
const double projection = n.dot(*this);
const double magnitude = n.dot(n);
n *= (2.0 * projection / magnitude);
return *this -= n;
}