From 14f5f7784163b8ac824d241b6597e3687555ce49 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Thu, 11 May 2023 07:54:57 +1000 Subject: [PATCH] Improved coordinate system documentation --- docs/handbook/concepts.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/handbook/concepts.rst b/docs/handbook/concepts.rst index e40ed4687..42ea657ae 100644 --- a/docs/handbook/concepts.rst +++ b/docs/handbook/concepts.rst @@ -96,8 +96,8 @@ corners; the centre of a pixel addressed as (0, 0) actually lies at (0.5, 0.5). Coordinates are usually passed to the library as 2-tuples (x, y). Rectangles are represented as 4-tuples, with the upper left corner given first. For -example, a rectangle covering all of an 800x600 pixel image is written as (0, -0, 800, 600). +example, a rectangle covering all of a 2x2 pixel image is written as (0, 0, 1, +1). Palette -------