mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-26 21:32:41 +03:00
9 lines
290 B
C
9 lines
290 B
C
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <math.h>
|
|
#include "Thread.h"
|
|
|
|
void set_pixel(uint16_t x, uint16_t y, uint16_t color);
|
|
float bernstein(int i, int n, float t);
|
|
void draw_bezier(const int *points_x, const int *points_y, size_t num_points, uint16_t color); |