Reader uses specs for laser pos. Holoview in holodisk. Improved side sliders. Added front plates.

This commit is contained in:
Dejvino
2020-12-31 14:15:57 +01:00
parent 814f47b1a8
commit dc84b366ab
3 changed files with 45 additions and 8 deletions
+9 -2
View File
@@ -43,6 +43,10 @@ module reader(disk_size) {
}
}
module laser_space() {
translate(get_holodisk_laser_cutout_pos_center()) cube(get_holodisk_laser_cutout_size(), center=true);
}
module head_space() {
/*stube=[head_size.x-head_frame*2, head_size.y+head_frame*3, head_size.z-head_frame*2];
up(head_size.z/4 + head_frame)
@@ -65,7 +69,7 @@ module reader(disk_size) {
}
}
head();
//head();
retraction=laser_tower_size.z;
down(retraction)
@@ -81,7 +85,10 @@ module reader(disk_size) {
fwd(frame) cube([width, frame, height]);
head_space();
}
fwd(frame) down(frame) cube([width, depth + frame, frame]);
down(frame) difference() {
fwd(frame) cube([width, depth + frame, frame]);
scale(1.01) down(0.01) laser_space();
}
}
}