diff options
Diffstat (limited to 'src/globals.py')
-rw-r--r-- | src/globals.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/globals.py b/src/globals.py new file mode 100644 index 0000000..d8406e5 --- /dev/null +++ b/src/globals.py @@ -0,0 +1,15 @@ +WIDTH =800 +HEIGHT=800 + +WHITE=(255 , 255 , 255) +BLACK=(0 , 0 , 0 ) +RED =(255 , 0 , 0 ) +GREEN=(0 , 255 , 0 ) +BLUE =(0 , 0 , 255) + +NODE_MIN_VEL = 1.0 +NODE_MAX_VEL = 2.0 + +NODE_MIN_RADIUS = 8 +NODE_MAX_RADIUS = 30 + |