From 67c33b06e295ca247a5d4d1f1398a3dde03a224a Mon Sep 17 00:00:00 2001 From: DepFA <35278260+dfaker@users.noreply.github.com> Date: Tue, 27 Sep 2022 12:17:38 +0100 Subject: [PATCH] Updated Features (markdown) --- Features.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Features.md b/Features.md index e9ed6ef..221b927 100644 --- a/Features.md +++ b/Features.md @@ -128,10 +128,15 @@ Creates a grid of images with varying parameters. Select which parameters should X type and Y type fields, and input those parameters separated by comma into X values/Y values fields. For integer, and floating ponit numbers, ranges are supported. Examples: -- `1-5` = 1, 2, 3, 4, 5 -- `1-5 (+2)` = 1, 3, 5 -- `10-5 (-3)` = 10, 7 -- `1-3 (+0.5)` = 1, 1.5, 2, 2.5, 3 +- Simple ranges: + - `1-5` = 1, 2, 3, 4, 5 +- Ranges with increment in bracket: + - `1-5 (+2)` = 1, 3, 5 + - `10-5 (-3)` = 10, 7 + - `1-3 (+0.5)` = 1, 1.5, 2, 2.5, 3 +- Ranges with count in square brackets: + - `1-10 [5]` = 1, 3, 5, 7, 10 + - `0.0-1.0 [6]` = 0.0, 0.2, 0.4, 0.6, 0.8, 1.0 ![](images/xy_grid-medusa.png)