fine tune ear headband defaults as globals
This commit is contained in:
parent
da1d122947
commit
d47be5dbc6
4 changed files with 42 additions and 6 deletions
|
@ -1,7 +1,16 @@
|
|||
use <catear_headband.scad>
|
||||
include <headband.scad>
|
||||
|
||||
module mouseear_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, ear_bend_factor=0.65, ear_stretch_factor=1, ear_angle=40) {
|
||||
EAR_VERSION = 3;
|
||||
EAR_SKEW = 0;
|
||||
EAR_SCALE = 1;
|
||||
EAR_BEND_FACTOR = 0.5;
|
||||
EAR_STRETCH_FACTOR = 1;
|
||||
EAR_ANGLE = 40;
|
||||
WITH_RAKE = true;
|
||||
DETAILS = true;
|
||||
|
||||
module mouseear_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) {
|
||||
catear_headband(
|
||||
debug=debug,
|
||||
size=size,
|
||||
|
@ -17,4 +26,4 @@ module mouseear_headband(debug=DEBUG, size=SIZE, height=HEIGHT, thickness=THICKN
|
|||
ear_angle=ear_angle);
|
||||
}
|
||||
|
||||
mouseear_headband();
|
||||
rotate(-90) mouseear_headband();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue