asdf

Dependencies:   mbed

Fork of manworm_ticker_tv by Bayley Wang

gfx.h

Committer:
dicarloj
Date:
2018-05-03
Revision:
11:537cde55b27f
Parent:
9:2a47b9ff8911

File content as of revision 11:537cde55b27f:

#ifndef _gfx
#define _gfx
struct point_t
{
    float x,y,z;
};

struct line_t
{
    point_t *a, *b;
};

struct cube_t
{
    point_t* points[8];
    line_t* lines[12];
};

void init_gfx();
char* get_gfx_stat();
void new_frame(float pitch_rate, float yaw_rate);
#endif