From 0d44d2cc9b1a686b87abc4feea93f3f0cf7132d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0trba?= Date: Wed, 6 Nov 2019 00:46:26 +0100 Subject: [PATCH] Revert "Fixed a couple of errors in methods comments" --- geometry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geometry.go b/geometry.go index 5cbfb6b..c2bbe6e 100644 --- a/geometry.go +++ b/geometry.go @@ -841,7 +841,7 @@ func (c Circle) Intersect(d Circle) Circle { } } -// IntersectLine will return the shortest Vec such that if the Circle is moved by the Vec returned, the Line and Rect no +// IntersectLine will return the shortest Vec such that if the Rect is moved by the Vec returned, the Line and Rect no // longer intersect. func (c Circle) IntersectLine(l Line) Vec { return l.IntersectCircle(c).Scaled(-1)