Closed The009 closed 1 year ago
Just back from holiday .... will look as soon. Thanks.
I would like the openscad command used to for the image attached, so can understand better the bug. Thanks for the help.
I would like the openscad command used to for the image attached, so can understand better the bug. Thanks for the help.
include <lasercut.scad>;
thickness = 19.05;
length = 101.6;
width = 101.6;
module platform(){
lasercutoutSquare(thickness, length, width,
finger_joints=[
[UP, 1, 4],
[DOWN, 0, 4],
[LEFT, 0,4],
]
);
};
module sideWall(){
points = [[0,0], [length,0], [length,0], [0,length], [length,length/2], [0,length], [0,0]];
color("BLUE",0.75)
lasercutout(thickness, points,
finger_joints=[
[DOWN, 0, 4],
[LEFT, 0,4],
],
//Add a simple tab to cover the back corner and add a very little bit to remove the line generaged in svg (BUG?)
simple_tabs=[[DOWN, -thickness/2 +.00001, 0]]
);
};
platform();
translate([0,0,0]) rotate([90,90,0]) sideWall();
translate([0,width+thickness,0]) rotate([90,90,0]) sideWall();
Sorry took me a while! Thanks.
Fix the finger joints to not extend into the model.