Merge pull request #133 from adrianVmariano/master

Added snap pins to joiners.scad
This commit is contained in:
Revar Desmera
2020-03-04 20:27:21 -08:00
committed by GitHub
10 changed files with 408 additions and 60 deletions

View File

@@ -406,7 +406,7 @@ function _normal_segment(p1,p2) =
// path = turtle(["move","left",360/5,"addlength",1],repeat=50);
// stroke(path,width=.2);
// Example(2DMed): yet another spiral, without using `repeat`
// path = turtle(concat(["angle",71],flatten(replist(["move","left","addlength",1],50))));
// path = turtle(concat(["angle",71],flatten(repeat(["move","left","addlength",1],50))));
// stroke(path,width=.2);
// Example(2DMed): The previous spiral grows linearly and eventually intersects itself. This one grows geometrically and does not.
// path = turtle(["move","left",71,"scale",1.05],repeat=50);