diff options
Diffstat (limited to 'configs/gen_colors.py')
-rw-r--r-- | configs/gen_colors.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/configs/gen_colors.py b/configs/gen_colors.py deleted file mode 100644 index 2ab36a6..0000000 --- a/configs/gen_colors.py +++ /dev/null @@ -1,9 +0,0 @@ -import itertools -import json - - -color_vals = [0, 85, 170, 255] # giving all color channels the same equally-spaced values -color_combs = {i: comb for i, comb in enumerate(itertools.product(color_vals, repeat=3))} - -with open("colors_64_v0.json", "w") as f: - json.dump(color_combs, f) |