/* ** --------------------------------------------------------------- ** Algorithms.h: ** */ #ifndef ALGORITHMS_H_ #define ALGORITHMS_H_ /* ** --------------------------------------------------------------- ** Includes: */ /* ** --------------------------------------------------------------- ** Functions Prototypes: */ void veSetError(float error); void veInit(); void veAddPoint(float x, float y); void veNoMorePoints(); void veGetVertices(float** vertices, int* size); void veClear(); void veFinish(); /* ** --------------------------------------------------------------- ** End: */ #endif