diff options
| author | warriorofwire <3454741+WarriorOfWire@users.noreply.github.com> | 2020-05-11 21:15:40 -0700 |
|---|---|---|
| committer | warriorofwire <3454741+WarriorOfWire@users.noreply.github.com> | 2020-05-11 21:15:40 -0700 |
| commit | 040beb0577f4360f34953db16c285a9af1bea6b8 (patch) | |
| tree | 108a8f9aac81094a3f79eecdea348eb839befc04 /shared-bindings/vectorio | |
| parent | cfd0de9c11629216f743a9edcadf93ad9e48fa1e (diff) | |
Clean up circle documentation
Diffstat (limited to 'shared-bindings/vectorio')
| -rw-r--r-- | shared-bindings/vectorio/Circle.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared-bindings/vectorio/Circle.c b/shared-bindings/vectorio/Circle.c index 8f409bd65..260e80d0f 100644 --- a/shared-bindings/vectorio/Circle.c +++ b/shared-bindings/vectorio/Circle.c @@ -17,6 +17,8 @@ //| //| .. class:: Circle(radius) //| +//| Circle is positioned on screen by its center point. +//| //| :param int radius: The radius of the circle in pixels //| static mp_obj_t vectorio_circle_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { @@ -42,7 +44,7 @@ static mp_obj_t vectorio_circle_make_new(const mp_obj_type_t *type, size_t n_arg //| .. attribute:: radius //| -//| Update the radius of the circle +//| The radius of the circle in pixels. //| STATIC mp_obj_t vectorio_circle_obj_get_radius(mp_obj_t self_in) { vectorio_circle_t *self = MP_OBJ_TO_PTR(self_in); |
