You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scad/leatherSkiver.scad

48 lines
1.3 KiB

include <stanley1992.scad>
$fn=150;
ColX = 10;
ColY = 10;
boxBotZ = 5;
boxTopZ = 5;
leatherOppeningZ = 10;
leatherOppeningY = 63;
bladeSpcaeX = 30 ;
bladeSpaceZ = 20 ;
boxZ = bladeSpaceZ+boxBotZ+boxTopZ;
boxX = bladeSpcaeX + ColX*2;
boxY = leatherOppeningY + ColY*2;
srcewHole = 3.1;
srcewThread = 2.8;
srcewDepth = bladeSpaceZ/2+boxBotZ;
screwPosz = boxBotZ + bladeSpaceZ -srcewDepth;
%base();
translate([boxX/2,boxY/2,10])rotate([10,0,90])stanley1992(center = true);
module base()
{
difference()
{
union()
{
cube([boxX,boxY,boxBotZ]);
translate([0,0,boxBotZ])cube([ColX,ColY,bladeSpaceZ]);
translate([0,boxY-ColY,boxBotZ])cube([ColX,ColY,bladeSpaceZ]);
translate([boxX-ColX,0,boxBotZ])cube([ColX,ColY,bladeSpaceZ]);
translate([boxX-ColX,boxY-ColY,boxBotZ])cube([ColX,ColY,bladeSpaceZ]);
}
union()
{
translate([ColX/2,ColY/2,screwPosz])cylinder(d=srcewThread, h=srcewDepth);
translate([boxX-ColX/2,ColY/2,screwPosz])cylinder(d=srcewThread, h=srcewDepth);
translate([ColX/2,boxY-ColY/2,screwPosz])cylinder(d=srcewThread, h=srcewDepth);
translate([boxX-ColX/2,boxY-ColY/2,screwPosz])cylinder(d=srcewThread, h=srcewDepth);
}
}
}