diff --git a/data/Dynamo_Nodes_Documentation.json b/data/Dynamo_Nodes_Documentation.json index 6123efce..3f68f2ee 100644 --- a/data/Dynamo_Nodes_Documentation.json +++ b/data/Dynamo_Nodes_Documentation.json @@ -1582,7 +1582,7 @@ { "Name": "AddItemToEnd", "imageFile": [ - "AddItemToEnd" + "AddItemToEnd-Ex1.JPG" ], "dynFile": [ "AddItemToEnd" @@ -1615,7 +1615,7 @@ { "Name": "Chop", "imageFile": [ - "Chop" + "Chop-Ex1.JPG" ], "dynFile": [ "Chop" @@ -2094,7 +2094,7 @@ "TakeEveryNthItem" ], "folderPath": "Core/List/Action", - "inDepth": "

Take Every Nth Item will produce a new list keeping items from the input list at intervals of the input 'n' value. The starting point of the interval can be changed with the 'offset' input. For example, putting 3 into 'n' and leaving the 'offset' as the default of zero will keep items with indices 2, 5, 8, etc. Changing the offset to 1 would instead keep items with indices 0, 3, 6, etc. Notice that the offset 'wraps' through the entire list. To remove selected items instead of keeping them, see 'DropEveryNthItem'. In the example below, we first generate a list of numbers using Range, and then keep every other number by using 2 as the input for 'n'.

" + "inDepth": "Drop Every Nth Item will produce a new list keeping items from the input list at intervals of the input 'n' value. The starting point of the interval can be changed with the 'offset' input. For example, putting 3 into 'n' and leaving the 'offset' as the default of zero will keep items with indices 2, 5, 8, etc. Changing the offset to 1 would instead keep items with indices 0, 3, 6, etc. Notice that the offset 'wraps' through the entire list. To remove selected items instead of keeping them, see 'DropEveryNthItem'. In the example below, we first generate a list of numbers using Range, and then keep every other number by using 2 as the input for 'n'." }, { "Name": "TakeItems", @@ -2132,7 +2132,7 @@ { "Name": "Empty", "imageFile": [ - "Empty" + "Empty-Ex1.png" ], "dynFile": [ "Empty" diff --git a/data/EXAMPLES/Core/List/Action/img/AddItemToEnd-Ex1.JPG b/data/EXAMPLES/Core/List/Action/img/AddItemToEnd-Ex1.JPG new file mode 100644 index 00000000..93e19e90 Binary files /dev/null and b/data/EXAMPLES/Core/List/Action/img/AddItemToEnd-Ex1.JPG differ diff --git a/data/EXAMPLES/Core/List/Action/img/Chop-Ex1.JPG b/data/EXAMPLES/Core/List/Action/img/Chop-Ex1.JPG new file mode 100644 index 00000000..0f9b159f Binary files /dev/null and b/data/EXAMPLES/Core/List/Action/img/Chop-Ex1.JPG differ diff --git a/data/EXAMPLES/Core/List/Action/img/Chop-Ex2.JPG b/data/EXAMPLES/Core/List/Action/img/Chop-Ex2.JPG new file mode 100644 index 00000000..a99d0d9b Binary files /dev/null and b/data/EXAMPLES/Core/List/Action/img/Chop-Ex2.JPG differ diff --git a/data/EXAMPLES/Core/List/Query/img/Empty-Ex1.png b/data/EXAMPLES/Core/List/Query/img/Empty-Ex1.png new file mode 100644 index 00000000..ff2973fe Binary files /dev/null and b/data/EXAMPLES/Core/List/Query/img/Empty-Ex1.png differ