diff options
| author | yo mama <pepper@scannerjammer.com> | 2015-10-10 02:54:41 -0700 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2015-10-10 02:54:41 -0700 |
| commit | b02cc8d49513cdcc54f4421e71db3512354d4e2e (patch) | |
| tree | 2a3a83e1f99a1108eedb703d2cf8ed43613b2c22 /ricky/imgradient/options.py | |
| parent | 52d85ddcb9c934ec4dc0e890633762bfa2ff51f5 (diff) | |
renamed options to selections
Diffstat (limited to 'ricky/imgradient/options.py')
| -rw-r--r-- | ricky/imgradient/options.py | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/ricky/imgradient/options.py b/ricky/imgradient/options.py deleted file mode 100644 index dd14cba..0000000 --- a/ricky/imgradient/options.py +++ /dev/null @@ -1,101 +0,0 @@ -from ricky.param.options import Options - -width_options = Options.from_dict( - {"value": 40, "weight": 60}, - {"value": 20, "weight": 60}, - {"value": 60, "weight": 60}, - {"value": 80, "weight": 60}, -) -height_options = Options.from_dict( - {"value": 400, "weight": 900}, -) -color1_options = Options.from_dict( - {"value": "", "weight": 0}, -# {"value": "black", "weight": 1}, -# {"value": "white", "weight": 2}, -) -color2_options = Options.from_dict( - {"value": "", "weight": 0}, -# {"value": "black", "weight": 2}, -# {"value": "white", "weight": 1}, -) -stripes_options = Options.from_dict( - {"value": "true", "weight": 3}, - {"value": "false", "weight": 1}, -) -stripenumber_options = Options.from_dict( - {"value": 3, "weight": 10}, - {"value": 10, "weight": 10}, - {"value": 20, "weight": 10}, - {"value": 100, "weight": 10}, - {"value": 40, "weight": 10}, -# {"value": 1, "weight": 50}, -# {"value": 2, "weight": 50}, -# {"value": 2, "weight": 50}, - -) -stripeintensity_options = Options.from_dict( - {"value": 1000, "weight": 10}, - {"value": 4, "weight": 10}, -) -# contrast_options = \ -brightness_options = \ - saturation_options = \ - hue_options = \ - Options.from_dict( - {"value": "", "weight": 0}, -# {"value": "", "weight": 300}, -) -halftone_options = Options.from_dict( - {"value": "", "weight": 60}, - {"value": "checkeredfade", "weight": 10}, - {"value": "etchedtransition", "weight": 10}, - {"value": "bendaydots", "weight": 10}, - {"value": "smallerdots1", "weight": 10}, - {"value": "smallerdots2", "weight": 10}, - {"value": "flatstripes", "weight": 10}, -) -bevel_options = Options.from_dict( - {"value": "", "weight": 4}, - {"value": "flatout", "weight": 1}, - {"value": "flatinner", "weight": 0}, - {"value": "evenlyframed", "weight": 1}, -# {"value": "biginner", "weight": 1}, - {"value": "bigouter", "weight": 1}, - {"value": "dramaticflatout", "weight": 1}, -# {"value": "dramaticflatinner", "weight": 1}, -) - -blurriness_options = \ - percentbeveled_options = Options.from_dict( - {"value": 30, "weight": 20}, - {"value": 10, "weight": 2}, - {"value": "", "weight": 1}, -) -rotate_options = \ - tilt_options = Options.from_dict( - {"value": 0, "weight": 200}, - {"value": 90, "weight": 2}, - {"value": 180, "weight": 2}, - {"value": 270, "weight": 2}, -) -flop_options = flip_options = Options.from_dict( - {"value": "", "weight": 1}, - {"value": "true", "weight": 1}, -) - -filetype_options = Options.from_dict( - {"value": "png", "weight": 10}, - {"value": "jpg", "weight": 2}, - {"value": "gif", "weight": 2}, -) -gradienttype_options = Options.from_dict( - {"value": "canvas", "weight": 1}, - {"value": "gradient", "weight": 5}, - {"value": "radial", "weight": 1}, - {"value": "colorspace", "weight": 1}, - {"value": "plasmawash", "weight": 2}, - {"value": "gradientwash", "weight": 1}, - {"value": "mirrored", "weight": 0}, - {"value": "noise", "weight": 1}, -) |
