diff options
author | Simponic <loganthebean222@gmail.com> | 2020-12-10 15:32:34 -0700 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-12-10 15:32:34 -0700 |
commit | 7868c17358f3014e6d9203250083f407419f5c46 (patch) | |
tree | b95b6311d5acf3e874f4e31d516431f69aaaf7d9 /globals.py | |
parent | 723e5c397689c9bac6208a100a26465e3097ae50 (diff) | |
download | graph-explorer-7868c17358f3014e6d9203250083f407419f5c46.tar.gz graph-explorer-7868c17358f3014e6d9203250083f407419f5c46.zip |
Added files
Diffstat (limited to 'globals.py')
-rw-r--r-- | globals.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/globals.py b/globals.py new file mode 100644 index 0000000..d8406e5 --- /dev/null +++ b/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 + |