robert@493: /* robert@493: * vector_graphics.h robert@493: * robert@493: * Created on: Nov 10, 2014 robert@493: * Author: parallels robert@493: */ robert@493: robert@493: #ifndef VECTOR_GRAPHICS_H_ robert@493: #define VECTOR_GRAPHICS_H_ robert@493: robert@493: int renderLine(float x1, float y1, float x2, float y2, float speed, robert@493: float *buffer, int maxLength); robert@493: int renderArc(float x, float y, float radius, float thetaMin, float thetaMax, robert@493: float speed, float *buffer, int maxLength); robert@493: void renderPoint(float x, float y, float *buffer, float length); robert@493: robert@493: robert@493: #endif /* VECTOR_GRAPHICS_H_ */