8607cdd783
* Removes VectorShape from user python interactions * Re-integrates vectorio with displayio behind draw protocol implementations * Implements draw protocol with VectorShape * Composes VectorShape behaviors into Rectangle, Circle and Polygon * Fixes terrible pixel garbage being left behind * Improves redraw performance (heuristically) by tracking dirty area separately from current area. Known Issues: It does not work with transposed views.
18 lines
414 B
C
18 lines
414 B
C
#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;
|
|
vectorio_event_t on_dirty;
|
|
mp_obj_t draw_protocol_instance;
|
|
} vectorio_circle_t;
|
|
|
|
#endif // MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_CIRCLE_H
|