From 51baf3067c368e1c638f708e0d166cc2227149b0 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 4 Oct 2015 14:57:59 -0400 Subject: Add detailed help about --morton and --hilbert. --- options.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/options.c b/options.c index 5d7c325..7834c58 100644 --- a/options.c +++ b/options.c @@ -243,9 +243,13 @@ print_usage(FILE *file, const char *command, bool verbose) usage(" -b, --bit-depth @DEPTH@:\n"); usage(" Use all @DEPTH@\\-bit colors (!default!: @24@)\n\n"); usage(" -s, --hue-sort:\n"); - usage(" Sort colors by hue first (!default!)\n"); + usage(" Sort colors by hue (!default!)\n"); usage(" -r, --random:\n"); - usage(" Randomize colors first\n\n"); + usage(" Randomize colors\n"); + usage(" -M, --morton:\n"); + usage(" Place colors in Morton order (Z\\-order)\n"); + usage(" -H, --hilbert:\n"); + usage(" Place colors in Hilbert curve order\n\n"); usage(" -l, --selection @min@|@mean@:\n"); usage(" Specify the selection mode (!default!: @min@)\n\n"); usage(" @min@: Pick the pixel with the closest neighboring pixel\n"); -- cgit v1.2.3