From 48e986ce14e817720cc143fa54afb9e22e9abc62 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 2 Jan 2022 22:54:25 +0800 Subject: [PATCH] add detail param --- examples/owl.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/owl.scad b/examples/owl.scad index 678007fe..2b369c9f 100644 --- a/examples/owl.scad +++ b/examples/owl.scad @@ -15,7 +15,7 @@ detail = 1; head_angles = [5, 0, 20]; owl(detail, head_angles); -rock(); +rock(detail); module owl(detail, head_angles) { n = (detail + 1) * 5; @@ -246,7 +246,7 @@ module owl(detail, head_angles) { claw(); } -module rock() { +module rock(detail) { radius = 16.5; detail = detail; amplitude = .25;