asdf

Dependencies:   mbed

Fork of manworm_ticker_tv by Bayley Wang

gfx.h

Committer:
dicarloj
Date:
2018-05-04
Revision:
12:e99cc1e9d928
Parent:
11:537cde55b27f

File content as of revision 12:e99cc1e9d928:

#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