// set up and maintain view as window sizes change
#ifndef VIEW_H
#define VIEW_H

extern int winWidth, winHeight;
extern float viewDistance;

/* this is called when window is created or resized */
extern "C" void reshape(int width, int height);

#endif
