mouseear_headband v0.1
This commit is contained in:
parent
91eeeec02b
commit
9113567ab2
|
@ -12,7 +12,7 @@ RAKE_WIDTH=1;
|
|||
RAKE_STRETCH=1;
|
||||
RAKE_CHAMFER=0.5;
|
||||
CHAMFER=1;
|
||||
CHAMFER_SHAPE="cone";
|
||||
CHAMFER_SHAPE="curve";
|
||||
|
||||
INSERTICLE_X = 4.6;
|
||||
INSERTICLE_Y = 7.4;
|
||||
|
|
20
mouseear_headband.scad
Normal file
20
mouseear_headband.scad
Normal file
|
@ -0,0 +1,20 @@
|
|||
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) {
|
||||
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);
|
||||
}
|
||||
|
||||
mouseear_headband();
|
Loading…
Reference in a new issue