.NET
piemenu.asc
Associated article: Pie Menus for Windows
Tags: .NET
_PIE MENUS FOR WINDOWS_
by Carl Rollo
[LISTING ONE]
/* --PIEMENU.H-header file for pie menu routines-Carl C. Rollo, 1991,1992 -- */
#define MAXOPTIONS 8
#define PI 3.14159265
#define TWO_PI (2 * PI)
#define WHITE RGB (255, 255, 255)
#define BLACK RGB (0, 0, 0)
typedef struct
{
char *name; /* label for this ...


