#include <stdio.h>#include <conio.h>#include <iostream.h>#include <stdlib.h>#include <glut.h>#define WINW 800#define WINL 600float xmap(int x){ float halfw,fx; halfw = (float)WINW/2; fx = (x)/halfw; return fx;}float y...