diff -r 4e03b0e2a29f -r ed884a2fb009 src/geometry.h --- a/src/geometry.h Tue Jul 27 09:56:06 2021 +0300 +++ b/src/geometry.h Tue Jul 27 11:11:32 2021 +0300 @@ -85,7 +85,9 @@ std::optional rayRectangleIntersection(const Ray<2>& ray, const QRectF& rectangle); Plane planeFromTriangle(const Triangle& triangle); glm::vec3 normalVector(const Triangle& triangle); - std::optional linePlaneIntersection(const Line<3>& line, const Plane& plane, const float epsilon = 1e-6f); + std::optional linePlaneIntersection( + const Line<3>& line, + const Plane& plane, const float epsilon = 1e-6f); glm::vec3 scalingVector(const glm::mat4 matrix); LineSegment2D top(const QRectF& rectangle); LineSegment2D bottom(const QRectF& rectangle);