#ifndef SPIRAL #define SPIRAL #include "vgl.h" const int TURNS = 15; const int MAX_POINTS = 50; class Spiral{ public: Spiral(); ~Spiral(); void BindSpiral(); void Display(); private: GLfloat points[MAX_POINTS][2]; GLuint VAONumber; GLuint bufferID; }; #endif