fine tune ear headband defaults as globals

This commit is contained in:
user 2025-07-06 02:48:14 +02:00
commit d47be5dbc6
4 changed files with 42 additions and 6 deletions

View file

@ -1,7 +1,16 @@
use <catear_headband.scad>
include <headband.scad>
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.0, ear_stretch_factor=1.2, ear_angle=30, ear_version=3, ear_skew=1.0) {
EAR_VERSION = 3;
EAR_SKEW = 1;
EAR_SCALE = 1.2;
EAR_BEND_FACTOR = 0.00;
EAR_STRETCH_FACTOR = 1.2;
EAR_ANGLE = 30;
WITH_RAKE = true;
DETAILS = true;
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=EAR_SCALE, ear_bend_factor=EAR_BEND_FACTOR, ear_stretch_factor=EAR_STRETCH_FACTOR, ear_angle=EAR_ANGLE, ear_version=EAR_VERSION, ear_skew=EAR_SKEW) {
catear_headband(
debug=debug,
size=size,
@ -19,4 +28,4 @@ module foxear_headband(debug=DEBUG, size=SIZE, height=HEIGHT, thickness=THICKNES
ear_skew=ear_skew);
}
rotate(-90) foxear_headband(debug=true);
rotate(-90) foxear_headband();