plumbed vim heatsink, adjusted vim case heights, added mask for combo usb3-usbc and other case adjustments.

This commit is contained in:
Edward Kisiel
2022-08-21 16:44:52 -04:00
parent 9fd72e357c
commit c573e3e9f7
5 changed files with 131 additions and 89 deletions

View File

@@ -2752,19 +2752,19 @@ module mask(loc_x,loc_y,loc_z,rotation,side,class,type,wallthick,gap,floorthick,
place(loc_x-1,loc_y-3,loc_z-1.25,8,3,rotation,side) microusb_open();
}
// double stack usb opening
if(type == "double_stacked_a" && rotation == 0) {
if((type == "double_stacked_a" || type == "double_stacked_usb3-usbc") && rotation == 0) {
place(loc_x-1,loc_y-6,loc_z,15.5,16,rotation,side)
cube([15.5,8,16.5]);
}
if(type == "double_stacked_a" && rotation == 90) {
if((type == "double_stacked_a" || type == "double_stacked_usb3-usbc") && rotation == 90) {
place(loc_x-6,loc_y-1.25,loc_z,15.5,16,rotation,side)
cube([15.5,8,16.5]);
}
if(type == "double_stacked_a" && rotation == 180) {
if((type == "double_stacked_a" || type == "double_stacked_usb3-usbc") && rotation == 180) {
place(loc_x-1,loc_y+7.5,loc_z,15.5,16,rotation,side)
cube([15.5,8,16.5]);
}
if(type == "double_stacked_a" && rotation == 270) {
if((type == "double_stacked_a" || type == "double_stacked_usb3-usbc") && rotation == 270) {
place(loc_x+6.25,loc_y-1,loc_z,15.5,16,rotation,side)
cube([15.5,8,16.5]);
}