From a573ccae38c982825debfd7e0ed66fae62d67fc8 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 5 Jul 2019 16:09:53 -0700 Subject: [PATCH] Fixed rainbow() example images. --- transforms.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transforms.scad b/transforms.scad index a33b202..2e53c64 100644 --- a/transforms.scad +++ b/transforms.scad @@ -2189,9 +2189,9 @@ module HSV(h,s=1,v=1,a=1) color(HSV(h,s,v),a) children(); // Sets the color to progressive values along the ROYGBIV spectrum for each item. // Sets `$idx` to the index of the current item in `list` that we want to show. // Sets `$item` to the current item in `list` that we want to show. -// Example: +// Example(2D): // rainbow(["Foo","Bar","Baz"]) fwd($idx*10) text(text=$item,size=8,halign="center",valign="center"); -// Example: +// Example(2D): // rgn = [circle(d=45,$fn=3), circle(d=75,$fn=4), circle(d=50)]; // rainbow(rgn) stroke($item, close=true); module rainbow(list)