diff --git a/foxear_headband.scad b/foxear_headband.scad new file mode 100644 index 0000000..2650854 --- /dev/null +++ b/foxear_headband.scad @@ -0,0 +1,20 @@ +use +include + +module foxear_headband(debug=DEBUG, size=SIZE, height=HEIGHT, thickness=THICKNESS, part=PART, stretch_len=STRETCH_LEN, tip_len=TIP_LEN, tip_bend=TIP_BEND, 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, + ear_scale=ear_scale, + ear_bend_factor=ear_bend_factor, + ear_stretch_factor=ear_stretch_factor, + ear_angle=ear_angle); +} + +foxear_headband(); diff --git a/headband.scad b/headband.scad index 12697df..9ab8fcd 100644 --- a/headband.scad +++ b/headband.scad @@ -58,19 +58,3 @@ module headband(debug=DEBUG, size=SIZE, height=HEIGHT, thickness=THICKNESS, part }; }; } - -module foxear_headband(debug=DEBUG, size=SIZE, height=HEIGHT, thickness=THICKNESS, part=PART, stretch_len=STRETCH_LEN, tip_len=TIP_LEN, tip_bend=TIP_BEND, 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, - ear_scale=ear_scale, - ear_bend_factor=ear_bend_factor, - ear_stretch_factor=ear_stretch_factor, - ear_angle=ear_angle); -}