Update readme.md

This commit is contained in:
javalang 2018-11-15 18:06:02 +01:00 committed by GitHub
parent 0239b637e3
commit 09bb3d71dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,2 +1,5 @@
# TFTShape # TFTShape
TFTShape is an extension to draw shape-based objects on screen. The target of this extension is to abstract low level primitives but with full use of the TFT_eSPI core functions (no setPixel operations). Shapes are graphical objects with the most common 2D functionality such as draw, fill, scale and rotate. Shapes consists of polygons which can be defined by the user or they can be generated by various TFTShape builder functions. To give you an overview, here is a short example to see how to use this extension: TFTShape is an extension to draw shape-based objects on screen. The target of this extension is to abstract low level primitives but with full use of the TFT_eSPI core functions (no setPixel operations). Shapes are graphical objects with the most common 2D functionality such as draw, fill, scale and rotate. Shapes consists of vertices which will be interpteted by the TFTShape class to form points, lines, polygons etc. Vertices can be user defined or they can be generated by various TFTShape builder functions. To give you an overview, here is a short example to see how to use this extension:
##Building an analog clock
### clock-face