Skip to content

Commit

Permalink
vinscant: add diffuser for LED strip
Browse files Browse the repository at this point in the history
  • Loading branch information
redfast00 authored and hannes-dev committed Dec 5, 2024
1 parent 5a795ef commit d04a862
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vinscant/3d/case.scad
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ cover_thickness = 2;

part = "enclosure"; // [enclosure:Enclosure, cover:Cover, both:Enclosure and Cover]

print_part();
// print_part();
diffuser();

module diffuser() {
cube([5-0.25, 49-0.25, 1]);
translate([-0.5, -0.5, -1]) cube([5+1-0.25, 49-0.25+1, 1]);
}

module print_part() {
if (part == "enclosure") {
Expand Down

0 comments on commit d04a862

Please sign in to comment.