File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ mcu-renderer is a lightweight C graphics library designed for microcontrollers (
73734. **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()`).
You can’t perform that action at this time.
0 commit comments