From 872a56aa44d7ad776ea40756bdaab64fd28e9df2 Mon Sep 17 00:00:00 2001 From: itzpr3d4t0r <103119829+itzpr3d4t0r@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:18:28 +0200 Subject: [PATCH] fix docs a bit --- docs/circle.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/circle.rst b/docs/circle.rst index 777dc47..8cb93c3 100644 --- a/docs/circle.rst +++ b/docs/circle.rst @@ -409,9 +409,9 @@ Circle Methods .. method:: intersect | :sl:`finds intersections between the circle and another shape` - | :sg:`intersect(Circle) -> list[Point]` + | :sg:`intersect(Circle) -> list[Tuple[float, float]]` - Calculates and returns a list of intersection points between the circle and another shape. + Returns a list of intersection points between the circle and another shape. The other shape must be a `Circle` object. If the circle does not intersect or has infinite intersections, an empty list is returned.