diff --git a/data/Dynamo_Nodes_Documentation.json b/data/Dynamo_Nodes_Documentation.json index 6123efce..6e2f8cf9 100644 --- a/data/Dynamo_Nodes_Documentation.json +++ b/data/Dynamo_Nodes_Documentation.json @@ -1819,7 +1819,7 @@ "Join" ], "folderPath": "Core/List/Action", - "inDepth": "Join will take the input lists and join them together into a single list. You adjust the number of input points by using the '+' and '-' buttons on the Join node. In the example below, we first use two codes blocks to generate two ranges of numbers. One is the odd numbers {1,3,5}, while the second is the even numbers {0,2,4}. By using a Join node, we can join these two lists into a single list {1,3,5,0,2,6}. " + "inDepth": "

Join will take the input lists and join them together into a single list. You adjust the number of input points by using the '+' and '-' buttons on the Join node. In the example below, we first use two codes blocks to generate two ranges of numbers. One is the odd numbers {1,3,5}, while the second is the even numbers {0,2,4}. By using a Join node, we can join these two lists into a single list {1,3,5,0,2,4}.

" }, { "Name": "LastItem", @@ -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",