Update shared-bindings/vectorio/Polygon.c

As per microDev1

Co-authored-by: microDev <70126934+microDev1@users.noreply.github.com>
This commit is contained in:
James Carr 2021-09-13 17:04:46 +01:00 committed by GitHub
parent f35d1578cc
commit 5f519b8ba9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -92,13 +92,13 @@ const mp_obj_property_t vectorio_polygon_points_obj = {
// Documentation for properties inherited from VectorShape.
//| x : int
//| """Initial screen X position of the 0,0 origin in the points list."""
//| """X position of the 0,0 origin in the points list."""
//|
//| y : int
//| """Initial screen Y position of the 0,0 origin in the points list."""
//| """Y position of the 0,0 origin in the points list."""
//|
//| location : Tuple[int,int]
//| """Initial screen (X,Y) position of the 0,0 origin in the points list."""
//| """(X,Y) position of the 0,0 origin in the points list."""
//|
//| pixel_shader : Union[displayio.ColorConverter,displayio.Palette]
//| """The pixel shader of the polygon."""