From 36f673963e46440b6c7103fd8c7127a1b1251c1d Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sat, 9 May 2020 13:44:32 +0200 Subject: [PATCH] increase default value for lines --- README.md | 2 +- huepaper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9d4e1d..7dce2a5 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Install the python requirements with `pip install -r requirements.txt`. file where to save the huepaper to (default: None) -l [LINES], --lines [LINES] include one to three random lines in base color with - given opacity in range [0, 1] (default: 0.1) + given opacity in range [0, 1] (default: 0.3) -lb [LINES_BRIGHT], --lines_bright [LINES_BRIGHT] include one to three bright random lines with given opacity in range [0, 1] (default: 0.1) diff --git a/huepaper.py b/huepaper.py index 4270b1a..c3152c7 100755 --- a/huepaper.py +++ b/huepaper.py @@ -209,7 +209,7 @@ def main(): parser.add_argument('-c', '--color', help = 'color, the huepaper is generated from (uses a random color if not given)') parser.add_argument('-p', '--preview', action = 'store_true', help = 'preview huepaper') parser.add_argument('-o', '--output', help = 'file where to save the huepaper to (default: None)') - parser.add_argument('-l', '--lines', nargs = '?', const = 0.1, type = float, help = 'include one to three random lines in base color with given opacity in range [0, 1] (default: 0.1)') + parser.add_argument('-l', '--lines', nargs = '?', const = 0.3, type = float, help = 'include one to three random lines in base color with given opacity in range [0, 1] (default: 0.3)') parser.add_argument('-lb', '--lines_bright', nargs = '?', const = 0.1, type = float, help = 'include one to three bright random lines with given opacity in range [0, 1] (default: 0.1)') parser.add_argument('-ld', '--lines_dark', nargs = '?', const = 0.1, type = float, help = 'include one to three dark random lines with given opacity in range [0, 1] (default: 0.1)') parser.add_argument('-P', '--pixelate', help = "pixelate image (e.g. 42x42)")