diff -r 4e03b0e2a29f -r ed884a2fb009 src/geometry.cpp --- a/src/geometry.cpp Tue Jul 27 09:56:06 2021 +0300 +++ b/src/geometry.cpp Tue Jul 27 11:11:32 2021 +0300 @@ -103,7 +103,9 @@ std::optional geom::rayLineSegmentIntersection(const Ray<2>& ray, const LineSegment2D& line) { - std::optional result = lineLineIntersection(rayToLine(ray), lineFromPoints(line.points[0], line.points[1])); + std::optional result = lineLineIntersection( + rayToLine(ray), + lineFromPoints(line.points[0], line.points[1])); if (result.has_value()) { const float d1 = glm::dot(*result - ray.anchor, ray.direction);