1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-22 06:13:10 +02:00

use ptf_rotate

This commit is contained in:
Justin Lin
2020-03-24 17:21:17 +08:00
parent ec0c1fa9ae
commit 55c9493fca
9 changed files with 119 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
use <golden_spiral.scad>;
use <rotate_p.scad>;
use <ptf/ptf_rotate.scad>;
use <hollow_out.scad>;
use <experimental/voronoi2d_cells.scad>;
@@ -27,7 +27,7 @@ module voronoi_fibonacci() {
pts = [
for(a = [0:a_step:360 - a_step])
each [for(p = spiral) rotate_p(p, a)]
each [for(p = spiral) ptf_rotate(p, a)]
];
half_line_thicness = line_thickness / 2;