aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/shared-module/vectorio/Circle.h
blob: 6ebd9af25f88d33d40bca8e88e231fa9c4e632fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_CIRCLE_H
#define MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_CIRCLE_H

#include <stdint.h>

#include "py/obj.h"

#include "shared-module/vectorio/__init__.h"

typedef struct {
    mp_obj_base_t base;
    uint16_t radius;
    uint16_t color_index;
    vectorio_event_t on_dirty;
    mp_obj_t draw_protocol_instance;
} vectorio_circle_t;

#endif // MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_CIRCLE_H