From 781ecd6529505e4bf1fd400634ee83bcb9a07c81 Mon Sep 17 00:00:00 2001 From: epoch Date: Sun, 19 Mar 2017 04:51:01 -0500 Subject: I have no idea why I am doing this... --- src/graphics_c2.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/graphics_c2.h (limited to 'src/graphics_c2.h') diff --git a/src/graphics_c2.h b/src/graphics_c2.h new file mode 100644 index 0000000..35920fd --- /dev/null +++ b/src/graphics_c2.h @@ -0,0 +1,17 @@ +#ifndef _HACKVR_GRAPHICS_C2_H_ +#define _HACKVR_GRAPHICS_C2_H_ + +#include "math.h" + +int c2sX(real x); +int s2cX(real x); +int c2sY(real y); +int s2cY(real y); +cs_t c2_to_cs(c2_t p); +c2_t cs_to_c2(cs_t p); +void draw_c2_line(c2_t p1,c2_t p2); +void draw_c2_shape(c2_s_t s); +void draw_c2_filled_shape(c2_s_t s); +void draw_c2_text(c2_t p,char *text); + +#endif -- cgit v1.2.3