31 lines
916 B
OpenSCAD
31 lines
916 B
OpenSCAD
use <catear_headband.scad>
|
|
include <headband.scad>
|
|
|
|
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,
|
|
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);
|
|
}
|
|
|
|
rotate(-90) foxear_headband();
|