diff --git a/arrays.scad b/arrays.scad index 5f489fc..a994c3c 100644 --- a/arrays.scad +++ b/arrays.scad @@ -245,11 +245,33 @@ function list_remove(list, elements) = // list_insert(list, pos, elements); // Description: // Insert `elements` into `list` before position `pos`. -function list_insert(list, pos, elements) = - concat( - slice(list,0,pos), - elements, - (pos