From 8705a8ff0f409406844ed58687cb775c8281e594 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Sun, 14 Jul 2019 12:45:18 -0700 Subject: [PATCH] Embiggened turtle() images. --- shapes2d.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shapes2d.scad b/shapes2d.scad index 347f582..ff6e29c 100644 --- a/shapes2d.scad +++ b/shapes2d.scad @@ -610,16 +610,16 @@ module supershape(step=0.5,m1=4,m2=undef,n1,n2=undef,n3=undef,a=1,b=undef, r=und // "yjump", 0, // ]); // stroke(path, width=.1); -// Example(2D): square spiral +// Example(2DMed): square spiral // path = turtle(flatten(replist(["move","left","addlength",1],50))); // stroke(path,width=.1); -// Example(2D): pentagonal spiral +// Example(2DMed): pentagonal spiral // path = turtle(concat(["angle",360/5],flatten(replist(["move","left","addlength",1],50)))); // stroke(path,width=.2); -// Example(2D): yet another spiral +// Example(2DMed): yet another spiral // path = turtle(concat(["angle",71],flatten(replist(["move","left","addlength",1],50)))); // stroke(path,width=.2); -// Example(2D): The previous spiral grows linearly and eventually intersects itself. This one grows geometrically and does not. +// Example(2DMed): The previous spiral grows linearly and eventually intersects itself. This one grows geometrically and does not. // path = turtle(concat(["angle",71],flatten(replist(["move","left","scale",1.05],50)))); // stroke(path,width=.05); // Example(2D): Koch Snowflake