From 2d508831ba18b2f3e3b898f489839d3fd5e41566 Mon Sep 17 00:00:00 2001 From: April John Date: Tue, 16 Jan 2024 23:10:08 +0100 Subject: [PATCH] foxear_headband v0.1 extracted from 3c3e2203b2d9b0c1dad6054a9a0048399ab5497d Author: April John Date: Fri Jan 5 16:43:30 2024 +0100 [feat] fox, wolf and puppy ears --- pressfit_headband.scad | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/pressfit_headband.scad b/pressfit_headband.scad index 41a1aeb..b37b6a3 100644 --- a/pressfit_headband.scad +++ b/pressfit_headband.scad @@ -203,4 +203,23 @@ module bunnyear_headband(debug=false, size=60, height=4.6, thickness=3, part=0.7 ear_angle=ear_angle); } -bunnyear_headband(); \ No newline at end of file +module foxear_headband(debug=false, size=60, height=4.6, thickness=3, part=0.7, stretch_len=40, tip_len=0.1, tip_bend=20, rake_depth=1, rake_width=0.5, rake_stretch=1, ear_scale=1.2, ear_bend_factor=0.01, ear_stretch_factor=1.2, ear_angle=30) { + catear_headband( + debug=debug, + size=size, + height=height, + thickness=thickness, + part=part, + stretch_len=stretch_len, + tip_len=tip_len, + tip_bend=tip_bend, + rake_depth=rake_depth, + rake_width=rake_width, + rake_stretch=rake_stretch, + ear_scale=ear_scale, + ear_bend_factor=ear_bend_factor, + ear_stretch_factor=ear_stretch_factor, + ear_angle=ear_angle); +} + +foxear_headband(); \ No newline at end of file