From e8c400517e7c9d5da1ee2c8eb3faf9d90d75dc83 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Thu, 2 Mar 2023 22:54:39 -0500 Subject: [PATCH] doc tweaks --- lists.scad | 5 +++-- utility.scad | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lists.scad b/lists.scad index a749969..25cd15c 100644 --- a/lists.scad +++ b/lists.scad @@ -798,8 +798,7 @@ function list_remove_values(list,values=[],all=false) = - -// Section: Lists of Subsets +// Section: List Iteration Index Helper // Function: idx() // Usage: @@ -828,6 +827,8 @@ function idx(list, s=0, e=-1, step=1) = ) [_s : step : _e]; +// Section: Lists of Subsets + // Function: pair() // Usage: diff --git a/utility.scad b/utility.scad index 7f0f638..b321cf0 100644 --- a/utility.scad +++ b/utility.scad @@ -935,7 +935,7 @@ module shape_compare(eps=1/1024) { } -// Section: Looping Helpers +// Section: C-Style For Loop Helpers // You can use a list comprehension with a C-style for loop to iteratively make a calculation. // . // The syntax is: `[for (INIT; CONDITION; NEXT) RETVAL]` where: