From baf4eb76dc83a8b86ff3add55e310e10516004a3 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Mon, 3 Aug 2020 19:52:13 -0400 Subject: [PATCH] doc tweak --- arrays.scad | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arrays.scad b/arrays.scad index 4cef623..9943c31 100644 --- a/arrays.scad +++ b/arrays.scad @@ -1177,7 +1177,8 @@ function add_scalar(v,s) = // Description: // Extracts the entries listed in idx from each entry in M. For a matrix this means // selecting a specified set of columsn. If idx is a number the return is a vector, otherwise -// it is a list of lists (the submatrix). +// it is a list of lists (the submatrix). Note that unlike subindex, even if you give a number for +// an index the output includes all levels of list nesting. // Arguments: // M = The given list of lists. // idx = The index, list of indices, or range of indices to fetch.