Skip to content
Snippets Groups Projects
Commit 71c3ea01 authored by fxk8y's avatar fxk8y :spider:
Browse files

Taking PCB outline from master

parent dab44ee8
No related branches found
No related tags found
1 merge request!1Feature/hexagon
minkowski() {
rotate([0, 0, 30]) circle(d=40, $fn=6);
circle(d=5, $fn=120);
pcb_diameter = 40;
module hex() {
minkowski() {
rotate([0, 0, 30]) circle(d=40, $fn=6);
circle(d=5, $fn=100);
}
}
module usb_c() {
p = 0.2;
module tri() {
polygon([[0, 0], [p, 0], [0, p]]);
}
w = 6.1;
h = 0.9;
translate([-w/2, -h, 0]) difference() {
square([w, h]);
tri();
translate([6.1, 0, 0]) mirror([1, 0, 0]) tri();
}
}
translate([0, 0, 0]) hex();
//rotate([0, 0, -90]) usb_c();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment