view visuality.h @ 75:0083b2f7b3c7

Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author Mike Pavone <pavone@retrodev.com>
date Tue, 06 Jul 2010 07:52:59 -0400
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_