view visuality.h @ 165:47ab97730865

Fix a couple of issues in networking lib
author Mike Pavone <pavone@retrodev.com>
date Thu, 10 Mar 2011 04:15:37 +0000
parents 76568becd6d6
children
line wrap: on
line source

#ifndef _VISUALITY_H_
#define _VISUALITY_H_

#ifdef WIN32
#include <windows.h>
#include <Windowsx.h>

//#include <gl\gl.h>
//#include <gl\glu.h>
//#include <gl\glaux.h>

#endif

#define CIRCLE_STEP 0.05
#define INPUT_SIZE 0.20
#define OUTPUT_SIZE INPUT_SIZE

#define TEXT_RED	0.0
#define TEXT_BLUE	0.0
#define TEXT_GREEN	0.0

#define BODY_RED	1.0
#define BODY_BLUE	1.0
#define	BODY_GREEN	1.0

#define SELECT_RED	0.7
#define SELECT_BLUE	0.7
#define	SELECT_GREEN	0.7

#define	INPUT_RED	0.0
#define INPUT_BLUE	0.0
#define	INPUT_GREEN	1.0

#define OUTPUT_RED	1.0
#define	OUTPUT_BLUE	0.0
#define	OUTPUT_GREEN 0.0

#define	WIRE_RED	1.0
#define WIRE_BLUE	1.0
#define	WIRE_GREEN	1.0





#endif //_VISUALITY_H_