diff options
author | Simponic <loganthebean222@gmail.com> | 2020-12-10 18:10:51 -0700 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-12-10 18:10:51 -0700 |
commit | 0ea46a3d721bdefab70f24c4c5573ff568a56cab (patch) | |
tree | b2d1ef05fefc1ab5a7464929127a37064a58eccd /src/globals.py | |
parent | 7868c17358f3014e6d9203250083f407419f5c46 (diff) | |
download | graph-explorer-0ea46a3d721bdefab70f24c4c5573ff568a56cab.tar.gz graph-explorer-0ea46a3d721bdefab70f24c4c5573ff568a56cab.zip |
Added files
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 + |