From 7bdaeeeb67761327b0689292432e73f0196900f5 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 10 Jul 2020 20:44:48 +0800 Subject: [PATCH] simplify --- examples/dragon.scad | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/examples/dragon.scad b/examples/dragon.scad index a3f30c83..1a9f3287 100644 --- a/examples/dragon.scad +++ b/examples/dragon.scad @@ -38,15 +38,13 @@ module one_segment() { } // hair - for(i = [0:2]) { - rotate([15 -15 * i, 0, 0]) - translate([0, 3, -4]) - rotate([45, 0, 0]) - rotate([0, 90, 0]) - linear_extrude(2, center = true) - scale([3.5, 2, 1]) - circle(3, $fn = 3); - } + translate([0, 1, -4]) + rotate([45, 0, 0]) + rotate([0, 90, 0]) + linear_extrude(2, center = true) + scale([3.5, 2, 1]) + circle(3, $fn = 3); + // belly translate([0, -3, 1]) @@ -190,7 +188,7 @@ module dragon() { scale(1.1) - along_with(path_pts, scale = 0.7, method = "EULER_ANGLE") + along_with(path_pts, scale = 0.85, method = "EULER_ANGLE") one_segment(); translate([19, 0, 65])