Missed one!

This commit is contained in:
Pete Favelle 2022-07-09 16:57:35 +01:00
parent cba2543d82
commit 1b36899789
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Pico Graphics is a tiny graphics library supporting a number of underlying buffer formats including 8-bit paletted (256 colour), 8-bit RGB332 (256 colour), 16-bit RGB565 (65K colour) and 4-bit packed (8 colour). Pico Graphics is a tiny graphics library supporting a number of underlying buffer formats including 8-bit paletted (256 colour), 8-bit RGB332 (256 colour), 16-bit RGB565 (65K colour) and 4-bit packed (8 colour).
It supports drawing text, primitive and individual pixels and includes basic types such as `Rect` and `point` brimming with methods to help you develop games and applications. It supports drawing text, primitive and individual pixels and includes basic types such as `Rect` and `Point` brimming with methods to help you develop games and applications.
- [Overview](#overview) - [Overview](#overview)
- [Pen Types](#pen-types) - [Pen Types](#pen-types)
@ -179,7 +179,7 @@ graphics.rectangle(box);
#### Point #### Point
The `Point` type descrives a single point - synonymous with a pixel - in terms of its x and y position. The `Point` type describes a single point - synonymous with a pixel - in terms of its x and y position.
##### Point.clamp ##### Point.clamp