#ifndef LINE_DRAWING_H #define LINE_DRAWING_H #include "Namespace.h" BEGIN_NAMESPACE void glDrawPolyline(float points[][2], int pointCount); void glDrawThickPolyline(float topPoints[][2], float points[][2], int pointCount, float thickness); void LineDrawingTests(); END_NAMESPACE #endif // LINE_DRAWING_H