Diffuser insert improved based on tests.
This commit is contained in:
parent
489df48c17
commit
5003654629
|
@ -137,11 +137,12 @@ module light_diffuser_notch () {
|
||||||
|
|
||||||
module diffuser_spacer () {
|
module diffuser_spacer () {
|
||||||
$fn = 100;
|
$fn = 100;
|
||||||
LEN = 10;
|
LEN = 15;
|
||||||
|
THICKNESS = 3;
|
||||||
difference () {
|
difference () {
|
||||||
cylinder(r = 27.9 / 2, h = LEN, center = true);
|
cylinder(r = 27.9 / 2, h = LEN, center = true);
|
||||||
cylinder(r = 24 / 2, h = LEN + 1, center = true);
|
cylinder(r = 23 / 2, h = LEN + 1, center = true);
|
||||||
translate([0, 0, (LEN / 2) - (2/2) ]) cylinder(r = 26 / 2, h = 2, center = true);
|
translate([0, 0, (LEN / 2) - (THICKNESS / 2)]) cylinder(r = 26 / 2, h = THICKNESS, center = true);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@ include <./motor.scad>;
|
||||||
//translate([0, 0, -51.2]) light_body35();
|
//translate([0, 0, -51.2]) light_body35();
|
||||||
//translate([0, 0, 20]) light_vent_top();
|
//translate([0, 0, 20]) light_vent_top();
|
||||||
//translate ([0, -20, 0]) rotate([90, 90, 0]) color("red") diffuser_insert();
|
//translate ([0, -20, 0]) rotate([90, 90, 0]) color("red") diffuser_insert();
|
||||||
//translate ([0, -20, 0]) rotate([90, 90, 0]) color("red") diffuser_spacer();
|
translate ([0, -20, 0]) rotate([90, 90, 0]) color("red") diffuser_spacer();
|
||||||
//rotate([0, 0, 90]) flashlight_mount();
|
//rotate([0, 0, 90]) flashlight_mount();
|
||||||
translate([0, -8.5, 0]) rotate([0, 0, 90]) impromptu_mount();
|
//translate([0, -8.5, 0]) rotate([0, 0, 90]) impromptu_mount();
|
||||||
//translate([30, -8.5, 0]) rotate([90, 0, 90]) flashlight_mount_cap();
|
//translate([30, -8.5, 0]) rotate([90, 0, 90]) flashlight_mount_cap();
|
||||||
|
|
||||||
//light_fresnel();
|
//light_fresnel();
|
Loading…
Reference in New Issue