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