From b93dc30acce2a26e0aeb44159df62d9e38f48056 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 5 Jun 2026 07:43:23 +0100 Subject: [PATCH] Fixed coordinate variable names in the 'Calculating the intersection' example --- docs/blog/graphics/determining-line-line-intersections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blog/graphics/determining-line-line-intersections.md b/docs/blog/graphics/determining-line-line-intersections.md index 035c3a0e..279103ae 100644 --- a/docs/blog/graphics/determining-line-line-intersections.md +++ b/docs/blog/graphics/determining-line-line-intersections.md @@ -62,7 +62,7 @@ If `determinant` is zero, then the lines are parallel. The intersection point is calculated like this: -Given two lines described by the points `(x1, y1)`, `(x2, y2)`, and `(x3, y3)`, `(x3, y3)`. +Given two lines described by the points `(x1, y1)`, `(x2, y2)`, and `(x3, y3)`, `(x4, y4)`. ![LineCross1](images/LineCross1.png)