Skip to content

Commit dfcdbfd

Browse files
committed
1.0.15
1 parent 9194e28 commit dfcdbfd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ mcu-renderer is a lightweight C graphics library designed for microcontrollers (
7373
4. **Drawing operations**:
7474
- **Filled rectangle**:
7575
```c
76-
mr_set_fill_color(&mr, mr_get_color(0xFF2020)); // Red (#FF2020)
76+
mr_set_fill_color(&mr, mr_get_color(0xff2020)); // Red (#ff2020)
7777
mr_draw_rectangle(&mr, &rectangle);
7878
```
7979
- **Bitmap (monochrome)**:
@@ -105,6 +105,7 @@ mcu-renderer is a lightweight C graphics library designed for microcontrollers (
105105
106106
## Font metrics
107107
108+
- **Size**: The em-square size of the font.
108109
- **Cap Height**: Height of uppercase 'A' (`mr_get_cap_height()`).
109110
- **Ascent**: Distance from top of line to [baseline](https://en.wikipedia.org/wiki/Baseline_(typography)) (`mr_get_ascent()`).
110111
- **Descent**: Distance from baseline to bottom of line (`mr_get_descent()`).

0 commit comments

Comments
 (0)