verzameling oude spullen
This commit is contained in:
commit
7ed9544283
119 changed files with 1288059 additions and 0 deletions
2234
beplating/TopBack.dxf
Normal file
2234
beplating/TopBack.dxf
Normal file
File diff suppressed because it is too large
Load diff
2962
beplating/TopCover.dxf
Normal file
2962
beplating/TopCover.dxf
Normal file
File diff suppressed because it is too large
Load diff
1970
beplating/TopLeft.dxf
Normal file
1970
beplating/TopLeft.dxf
Normal file
File diff suppressed because it is too large
Load diff
2114
beplating/TopRightBack.dxf
Normal file
2114
beplating/TopRightBack.dxf
Normal file
File diff suppressed because it is too large
Load diff
5074
beplating/TopRightFront.dxf
Normal file
5074
beplating/TopRightFront.dxf
Normal file
File diff suppressed because it is too large
Load diff
5830
beplating/TopRightFrontPanel.dxf
Normal file
5830
beplating/TopRightFrontPanel.dxf
Normal file
File diff suppressed because it is too large
Load diff
BIN
beplating/beplating.ods
Normal file
BIN
beplating/beplating.ods
Normal file
Binary file not shown.
975
beplating/frontview.svg
Normal file
975
beplating/frontview.svg
Normal file
File diff suppressed because one or more lines are too long
202
beplating/lasercuttermount/ISOThread_20120823.scad
Normal file
202
beplating/lasercuttermount/ISOThread_20120823.scad
Normal file
|
@ -0,0 +1,202 @@
|
|||
// ISO Metric Thread Implementation
|
||||
// Trevor Moseley
|
||||
// 23/08/2012
|
||||
|
||||
// For thread dimensions see
|
||||
// http://en.wikipedia.org/wiki/File:ISO_and_UTS_Thread_Dimensions.svg
|
||||
|
||||
//hex_nut(6);
|
||||
//hex_nut(8);
|
||||
//hex_nut(10);
|
||||
|
||||
//hex_bolt(6,12);
|
||||
//hex_bolt(8,16);
|
||||
//hex_bolt(10,16);
|
||||
//hex_bolt(12,24);
|
||||
|
||||
//thread_out(8,16);
|
||||
|
||||
defQ = 32;
|
||||
|
||||
// function for thread quality
|
||||
function get_thr_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,12],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
// function for shaft quality
|
||||
function get_sh_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,24],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
module hex_nut(dia)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hi = hex_nut_hi(dia);
|
||||
difference()
|
||||
{
|
||||
cylinder(r = hex_nut_dia(dia)/2,h = hi, $fn=6);
|
||||
translate([0,0,-0.1]) cylinder(r = dia/2, h =hi + 0.2);
|
||||
}
|
||||
translate([0,0,0.1]) thread_in(dia,hi-0.2,thr);
|
||||
}
|
||||
|
||||
module hex_bolt(dia,hi)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hhi = hex_bolt_hi(dia);
|
||||
cylinder(r = hex_bolt_dia(dia)/2,h = hhi, $fn=6);
|
||||
translate([0,0,hhi-0.1]) thread_out(dia,hi+0.1,thr);
|
||||
}
|
||||
|
||||
// function for thread pitch
|
||||
function get_coarse_pitch(dia) = lookup(dia, [
|
||||
[1,0.25],[1.2,0.25],[1.4,0.3],[1.6,0.35],[1.8,0.35],[2,0.4],[2.5,0.45],[3,0.5],[3.5,0.6],[4,0.7],[5,0.8],[6,1],[7,1],[8,1.25],[10,1.5],[12,1.75],[14,2],[16,2],[18,2.5],[20,2.5],[22,2.5],[24,3],[27,3],[30,3.5],[33,3.5],[36,4],[39,4],[42,4.5],[45,4.5],[48,5],[52,5],[56,5.5],[60,5.5],[64,6],[78,5]]);
|
||||
|
||||
// function for hex nut diameter from thread size
|
||||
function hex_nut_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,16.0],[10,19.6],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex nut height from thread size
|
||||
function hex_nut_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3],[8,5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
// function for hex bolt head diameter from thread size
|
||||
function hex_bolt_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,14.0],[10,16],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex bolt head height from thread size
|
||||
function hex_bolt_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3.5],[8,4.5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
module thread_out(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
cylinder(r = Rmin, h = hi);
|
||||
for(sg=[0:n])
|
||||
th_out_pt(Rmin-0.1,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_out_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
as = (sg % thr) * s; // angle to start of seg
|
||||
ae = as + s - (s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
sasrt=sas*rt;
|
||||
caert=cae*rt;
|
||||
saert=sae*rt;
|
||||
|
||||
// 1,4
|
||||
// |\
|
||||
// | \ 2,5
|
||||
// | /
|
||||
// |/
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
//echo(str("as=",as,", ae=",ae," z=",z));
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrt,sasrt,z], // 0
|
||||
[casrt,sasrt,z+(3/4*p)], // 1
|
||||
[cas*rtp,sas*rtp,z+(3/8*p)], // 2
|
||||
[caert,saert,z+sh], // 3
|
||||
[caert,saert,z+(3/4*p)+sh], // 4
|
||||
[cae*rtp,sae*rtp,z+sh+(3/8*p)]], // 5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
||||
|
||||
module thread_in(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
difference()
|
||||
{
|
||||
cylinder(r = (dia/2)+0.5,h = hi);
|
||||
translate([0,0,-1]) cylinder(r = (dia/2)+0.1, h = hi+2);
|
||||
}
|
||||
for(sg=[0:n])
|
||||
th_in_pt(Rmin+0.2,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_in_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
// as = 360 - (((sg % thr) * s) - 180); // angle to start of seg
|
||||
// ae = as - s + (s/100); // angle to end of seg (with overlap)
|
||||
as = ((sg % thr) * s - 180); // angle to start of seg
|
||||
ae = as + s -(s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
casrtp=cas*rtp;
|
||||
sasrt=sas*rt;
|
||||
sasrtp=sas*rtp;
|
||||
caert=cae*rt;
|
||||
caertp=cae*rtp;
|
||||
saert=sae*rt;
|
||||
saertp=sae*rtp;
|
||||
|
||||
// 2,5
|
||||
// /|
|
||||
// 1,4 / |
|
||||
// \ |
|
||||
// \|
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrtp,sasrtp,z], //0
|
||||
[casrt,sasrt,z+(3/8*p)], //1
|
||||
[casrtp,sasrtp,z+(3/4*p)], //2
|
||||
[caertp,saertp,z+sh], //3
|
||||
[caert,saert,z+(3/8*p)+sh], //4
|
||||
[caertp,saertp,z+(3/4*p)+sh]], //5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
202
beplating/lasercuttermount/ISOThread_20120823.scad~
Normal file
202
beplating/lasercuttermount/ISOThread_20120823.scad~
Normal file
|
@ -0,0 +1,202 @@
|
|||
// ISO Metric Thread Implementation
|
||||
// Trevor Moseley
|
||||
// 23/08/2012
|
||||
|
||||
// For thread dimensions see
|
||||
// http://en.wikipedia.org/wiki/File:ISO_and_UTS_Thread_Dimensions.svg
|
||||
|
||||
//hex_nut(6);
|
||||
//hex_nut(8);
|
||||
//hex_nut(10);
|
||||
|
||||
hex_bolt(6,12);
|
||||
//hex_bolt(8,16);
|
||||
//hex_bolt(10,16);
|
||||
//hex_bolt(12,24);
|
||||
|
||||
//thread_out(8,16);
|
||||
|
||||
defQ = 32;
|
||||
|
||||
// function for thread quality
|
||||
function get_thr_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,12],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
// function for shaft quality
|
||||
function get_sh_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,24],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
module hex_nut(dia)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hi = hex_nut_hi(dia);
|
||||
difference()
|
||||
{
|
||||
cylinder(r = hex_nut_dia(dia)/2,h = hi, $fn=6);
|
||||
translate([0,0,-0.1]) cylinder(r = dia/2, h =hi + 0.2);
|
||||
}
|
||||
translate([0,0,0.1]) thread_in(dia,hi-0.2,thr);
|
||||
}
|
||||
|
||||
module hex_bolt(dia,hi)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hhi = hex_bolt_hi(dia);
|
||||
cylinder(r = hex_bolt_dia(dia)/2,h = hhi, $fn=6);
|
||||
translate([0,0,hhi-0.1]) thread_out(dia,hi+0.1,thr);
|
||||
}
|
||||
|
||||
// function for thread pitch
|
||||
function get_coarse_pitch(dia) = lookup(dia, [
|
||||
[1,0.25],[1.2,0.25],[1.4,0.3],[1.6,0.35],[1.8,0.35],[2,0.4],[2.5,0.45],[3,0.5],[3.5,0.6],[4,0.7],[5,0.8],[6,1],[7,1],[8,1.25],[10,1.5],[12,1.75],[14,2],[16,2],[18,2.5],[20,2.5],[22,2.5],[24,3],[27,3],[30,3.5],[33,3.5],[36,4],[39,4],[42,4.5],[45,4.5],[48,5],[52,5],[56,5.5],[60,5.5],[64,6],[78,5]]);
|
||||
|
||||
// function for hex nut diameter from thread size
|
||||
function hex_nut_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,16.0],[10,19.6],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex nut height from thread size
|
||||
function hex_nut_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3],[8,5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
// function for hex bolt head diameter from thread size
|
||||
function hex_bolt_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,14.0],[10,16],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex bolt head height from thread size
|
||||
function hex_bolt_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3.5],[8,4.5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
module thread_out(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
cylinder(r = Rmin, h = hi);
|
||||
for(sg=[0:n])
|
||||
th_out_pt(Rmin-0.1,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_out_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
as = (sg % thr) * s; // angle to start of seg
|
||||
ae = as + s - (s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
sasrt=sas*rt;
|
||||
caert=cae*rt;
|
||||
saert=sae*rt;
|
||||
|
||||
// 1,4
|
||||
// |\
|
||||
// | \ 2,5
|
||||
// | /
|
||||
// |/
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
//echo(str("as=",as,", ae=",ae," z=",z));
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrt,sasrt,z], // 0
|
||||
[casrt,sasrt,z+(3/4*p)], // 1
|
||||
[cas*rtp,sas*rtp,z+(3/8*p)], // 2
|
||||
[caert,saert,z+sh], // 3
|
||||
[caert,saert,z+(3/4*p)+sh], // 4
|
||||
[cae*rtp,sae*rtp,z+sh+(3/8*p)]], // 5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
||||
|
||||
module thread_in(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
difference()
|
||||
{
|
||||
cylinder(r = (dia/2)+0.5,h = hi);
|
||||
translate([0,0,-1]) cylinder(r = (dia/2)+0.1, h = hi+2);
|
||||
}
|
||||
for(sg=[0:n])
|
||||
th_in_pt(Rmin+0.2,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_in_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
// as = 360 - (((sg % thr) * s) - 180); // angle to start of seg
|
||||
// ae = as - s + (s/100); // angle to end of seg (with overlap)
|
||||
as = ((sg % thr) * s - 180); // angle to start of seg
|
||||
ae = as + s -(s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
casrtp=cas*rtp;
|
||||
sasrt=sas*rt;
|
||||
sasrtp=sas*rtp;
|
||||
caert=cae*rt;
|
||||
caertp=cae*rtp;
|
||||
saert=sae*rt;
|
||||
saertp=sae*rtp;
|
||||
|
||||
// 2,5
|
||||
// /|
|
||||
// 1,4 / |
|
||||
// \ |
|
||||
// \|
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrtp,sasrtp,z], //0
|
||||
[casrt,sasrt,z+(3/8*p)], //1
|
||||
[casrtp,sasrtp,z+(3/4*p)], //2
|
||||
[caertp,saertp,z+sh], //3
|
||||
[caert,saert,z+(3/8*p)+sh], //4
|
||||
[caertp,saertp,z+(3/4*p)+sh]], //5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
11
beplating/lasercuttermount/lagerSubst.scad
Normal file
11
beplating/lasercuttermount/lagerSubst.scad
Normal file
|
@ -0,0 +1,11 @@
|
|||
$fn=60;
|
||||
|
||||
union(){
|
||||
difference(){
|
||||
translate([-20,-40,0])cube([40,60,5]);
|
||||
translate([0,5,-7])cylinder(r=8.5,h=20);
|
||||
# translate([10,-30,-2])cube([4,20,10]);
|
||||
# translate([-14,-30,-2])cube([4,20,10]);
|
||||
}
|
||||
}
|
||||
|
14
beplating/lasercuttermount/lagerSubst2.scad
Normal file
14
beplating/lasercuttermount/lagerSubst2.scad
Normal file
|
@ -0,0 +1,14 @@
|
|||
$fn=60;
|
||||
|
||||
union(){
|
||||
difference(){
|
||||
translate([0,0,0])cube([40,57,5]);
|
||||
translate([20,41,0])cylinder(r=8.5,h=20);
|
||||
#translate([10,10,0])cylinder(r=3,h=20);
|
||||
#translate([30,10,0])cylinder(r=3,h=20);
|
||||
//translate([10,-30,-2])cube([4,20,10]);
|
||||
//translate([-14,-30,-2])cube([4,20,10]);
|
||||
//translate([-20,-37,0])cube([30,20,10]);
|
||||
}
|
||||
}
|
||||
|
5210
beplating/lasercuttermount/lagerSubst2.stl
Normal file
5210
beplating/lasercuttermount/lagerSubst2.stl
Normal file
File diff suppressed because it is too large
Load diff
42960
beplating/lasercuttermount/mount.gcode
Normal file
42960
beplating/lasercuttermount/mount.gcode
Normal file
File diff suppressed because it is too large
Load diff
39
beplating/lasercuttermount/mount.scad
Normal file
39
beplating/lasercuttermount/mount.scad
Normal file
|
@ -0,0 +1,39 @@
|
|||
buisdikte=86;
|
||||
hoogte=20;
|
||||
bloklengte=40;
|
||||
blokdikte=20;
|
||||
bd = 2; // dikte vevestigingsbout
|
||||
tm = 75; //afstand tussen mitsumi's onder buis
|
||||
mh = 20; //mitsumi height
|
||||
$fn=200;
|
||||
/***************************************/
|
||||
include <ISOThread_20120823.scad>
|
||||
/***************************************/
|
||||
dia=buisdikte/2;
|
||||
module tubeholder(){
|
||||
union(){
|
||||
difference(){
|
||||
union(){
|
||||
cylinder(r=dia+hoogte/2,h=hoogte);
|
||||
translate([-dia-8,-20-tm/2,0])cube([40,tm+40,20]);
|
||||
}
|
||||
translate([0,0,-0.1])cylinder(r=dia,h=hoogte+0.2);
|
||||
}
|
||||
translate([-20,dia,0])rotate([0,0,0])cube([bloklengte,15,hoogte]);
|
||||
translate([-20,-dia-blokdikte+5,0])cube([bloklengte,15,hoogte]);
|
||||
}
|
||||
}
|
||||
module fastner() {
|
||||
difference() {
|
||||
cube([10,20,20]); //holder1
|
||||
translate([-10,10,10])rotate([0,90,0])cylinder(r=3,h=40);
|
||||
}
|
||||
}
|
||||
difference(){
|
||||
tubeholder();
|
||||
translate([0,-110,-20])cube([100,235,50]);
|
||||
//translate([-100,-110,-10])cube([100,235,30]);
|
||||
}
|
||||
translate([-dia-mh-8,-tm/2,0])cube([mh,tm,mh]); //20*20 voor tussen mitsumi
|
||||
#translate([-51,37.5,20])fastner();
|
||||
#translate([-51,-57.5,20])fastner();
|
23550
beplating/lasercuttermount/mount.stl
Normal file
23550
beplating/lasercuttermount/mount.stl
Normal file
File diff suppressed because it is too large
Load diff
48996
beplating/lasercuttermount/mount2.0.1.gcode
Normal file
48996
beplating/lasercuttermount/mount2.0.1.gcode
Normal file
File diff suppressed because it is too large
Load diff
14534
beplating/lasercuttermount/mount2.0.1.stl
Normal file
14534
beplating/lasercuttermount/mount2.0.1.stl
Normal file
File diff suppressed because it is too large
Load diff
68516
beplating/lasercuttermount/mount2.0.2.gcode
Normal file
68516
beplating/lasercuttermount/mount2.0.2.gcode
Normal file
File diff suppressed because it is too large
Load diff
47991
beplating/lasercuttermount/mount2.0.gcode
Normal file
47991
beplating/lasercuttermount/mount2.0.gcode
Normal file
File diff suppressed because it is too large
Load diff
14534
beplating/lasercuttermount/mount2.0.stl
Normal file
14534
beplating/lasercuttermount/mount2.0.stl
Normal file
File diff suppressed because it is too large
Load diff
39
beplating/lasercuttermount/mount2.scad
Normal file
39
beplating/lasercuttermount/mount2.scad
Normal file
|
@ -0,0 +1,39 @@
|
|||
buisdikte=86;
|
||||
hoogte=20;
|
||||
bloklengte=40;
|
||||
blokdikte=20;
|
||||
bd = 2; // dikte vevestigingsbout
|
||||
tm = 75; //afstand tussen mitsumi's onder buis
|
||||
mh = 20; //mitsumi height
|
||||
$fn=200;
|
||||
/***************************************/
|
||||
include <ISOThread_20120823.scad>
|
||||
/***************************************/
|
||||
dia=buisdikte/2;
|
||||
module tubeholder(){
|
||||
union(){
|
||||
difference(){
|
||||
union(){
|
||||
cylinder(r=dia+hoogte/2,h=hoogte);
|
||||
translate([-dia-8,-20-tm/2,0])cube([40,tm+40,20]);
|
||||
}
|
||||
translate([0,0,-0.1])cylinder(r=dia,h=hoogte+0.2);
|
||||
}
|
||||
translate([-20,dia,0])rotate([0,0,0])cube([bloklengte,15,hoogte]);
|
||||
translate([-20,-dia-blokdikte+5,0])cube([bloklengte,15,hoogte]);
|
||||
}
|
||||
}
|
||||
module fastner() {
|
||||
difference() {
|
||||
cube([14,20,20]); //holder1
|
||||
translate([-10,10,10])rotate([0,90,0])cylinder(r=3,h=40);
|
||||
}
|
||||
}
|
||||
difference(){
|
||||
tubeholder();
|
||||
translate([0,-110,-20])cube([100,235,50]);
|
||||
//translate([-100,-110,-10])cube([100,235,30]);
|
||||
}
|
||||
translate([-dia-mh-2+10,-20-tm/2,0])cube([4,115,20]); //20*20 voor tussen mitsumi
|
||||
#translate([-55,37.5,20])fastner();
|
||||
#translate([-55,-57.5,20])fastner();
|
14450
beplating/lasercuttermount/mount2.stl
Normal file
14450
beplating/lasercuttermount/mount2.stl
Normal file
File diff suppressed because it is too large
Load diff
17705
beplating/lasercuttermount/mount3.gcode
Normal file
17705
beplating/lasercuttermount/mount3.gcode
Normal file
File diff suppressed because it is too large
Load diff
19434
beplating/lasercuttermount/mount3.stl
Normal file
19434
beplating/lasercuttermount/mount3.stl
Normal file
File diff suppressed because it is too large
Load diff
1477
beplating/machinecompartmentinside.svg
Normal file
1477
beplating/machinecompartmentinside.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 57 KiB |
47170
beplating/mdf/machinecompartmentinside.dxf
Normal file
47170
beplating/mdf/machinecompartmentinside.dxf
Normal file
File diff suppressed because it is too large
Load diff
2712
beplating/mdf/machinecompartmentinside.dxf.2014_05_02.svg
Normal file
2712
beplating/mdf/machinecompartmentinside.dxf.2014_05_02.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 123 KiB |
2286
beplating/metaal/back.dxf
Normal file
2286
beplating/metaal/back.dxf
Normal file
File diff suppressed because it is too large
Load diff
2516
beplating/metaal/bottom.dxf
Normal file
2516
beplating/metaal/bottom.dxf
Normal file
File diff suppressed because it is too large
Load diff
11286
beplating/metaal/front r2.dxf
Normal file
11286
beplating/metaal/front r2.dxf
Normal file
File diff suppressed because it is too large
Load diff
11026
beplating/metaal/front.dxf
Normal file
11026
beplating/metaal/front.dxf
Normal file
File diff suppressed because it is too large
Load diff
50630
beplating/metaal/frontPanel bordje+aangepast.dxf
Normal file
50630
beplating/metaal/frontPanel bordje+aangepast.dxf
Normal file
File diff suppressed because it is too large
Load diff
50682
beplating/metaal/frontPanel bordje+aangepast2.dxf
Normal file
50682
beplating/metaal/frontPanel bordje+aangepast2.dxf
Normal file
File diff suppressed because it is too large
Load diff
5664
beplating/metaal/panel.dxf
Normal file
5664
beplating/metaal/panel.dxf
Normal file
File diff suppressed because it is too large
Load diff
1919
beplating/rookkanaal.svg
Normal file
1919
beplating/rookkanaal.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 75 KiB |
199
beplating/rookkanaalsvg.svg
Normal file
199
beplating/rookkanaalsvg.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="744.094488189"
|
||||
height="1052.36220472"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="onderbuisrechts.dxf">
|
||||
<metadata
|
||||
id="metadata74">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1766"
|
||||
inkscape:window-height="480"
|
||||
id="namedview72"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.27769373"
|
||||
inkscape:cx="372.04724"
|
||||
inkscape:cy="526.18109"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g20" />
|
||||
<desc
|
||||
id="desc4">/mnt/hd2/Data/projecten/prive/lasercutter/frame/onderbuisrechts.dxf - scale = 1.000000</desc>
|
||||
<defs
|
||||
id="defs6">
|
||||
<marker
|
||||
id="DistanceX"
|
||||
orient="auto"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||
style="stroke:#000000; stroke-width:0.5"
|
||||
id="path9" />
|
||||
</marker>
|
||||
<pattern
|
||||
height="8"
|
||||
id="Hatch"
|
||||
patternUnits="userSpaceOnUse"
|
||||
width="8"
|
||||
x="0"
|
||||
y="0">
|
||||
<path
|
||||
d="M8 4 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path12" />
|
||||
<path
|
||||
d="M6 2 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path14" />
|
||||
<path
|
||||
d="M4 0 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path16" />
|
||||
</pattern>
|
||||
<symbol
|
||||
id="*Model_Space" />
|
||||
<symbol
|
||||
id="*Paper_Space" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="0"
|
||||
id="g20">
|
||||
<path
|
||||
d="M 0.000000,1052.362205 0.000000,698.031496"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path22" />
|
||||
<path
|
||||
d="M 0.000000,698.031496 141.732283,698.031496"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path24" />
|
||||
<path
|
||||
d="M 141.732283,698.031496 141.732283,634.251969"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path26" />
|
||||
<path
|
||||
d="M 0.000000,1052.362205 1119.685039,1052.362205"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path28" />
|
||||
<path
|
||||
d="M 1119.685039,1052.362205 1119.685039,981.496063"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path30" />
|
||||
<path
|
||||
d="M 1119.685039,981.496063 1084.251969,981.496063"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path32" />
|
||||
<path
|
||||
d="M 1084.251969,981.496063 1084.251969,946.062992"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path34" />
|
||||
<path
|
||||
d="M 1084.251969,946.062992 1119.685039,946.062992"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path36" />
|
||||
<path
|
||||
d="M 1119.685039,775.984252 1119.685039,946.062992"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path38" />
|
||||
<path
|
||||
d="M 977.952756,775.984252 1119.685039,775.984252"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path40" />
|
||||
<path
|
||||
d="M 977.952756,634.251969 977.952756,775.984252"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path42" />
|
||||
<path
|
||||
d="M 729.921260,634.251969 729.921260,775.984252"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path44" />
|
||||
<path
|
||||
d="M 676.771654,634.251969 676.771654,829.133858"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path46" />
|
||||
<path
|
||||
d="M 141.732283,634.251969 676.771654,634.251969"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path48" />
|
||||
<path
|
||||
d="M 729.921260,634.251969 977.952756,634.251969"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path50" />
|
||||
<path
|
||||
d="M 676.771654,829.133858 818.503937,829.133858"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path52" />
|
||||
<path
|
||||
d="M 818.503937,829.133858 818.503937,775.984252"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path54" />
|
||||
<path
|
||||
d="M 729.921260,775.984252 818.503937,775.984252"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path56" />
|
||||
<path
|
||||
d="M 359.645669,933.661417 A 5.314961,5.314961 -0.000000 1 0 349.015748,933.661417 5.314961,5.314961 -0.000000 1 0 359.645669,933.661417 z"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path58" />
|
||||
<path
|
||||
d="M 643.110236,933.661417 A 5.314961,5.314961 -0.000000 1 0 632.480315,933.661417 5.314961,5.314961 -0.000000 1 0 643.110236,933.661417 z"
|
||||
style="stroke:#000000;stroke-width:0.5;fill:none;stroke-linecap: round"
|
||||
id="path60" />
|
||||
<path
|
||||
d="M 116.929134,1016.929134 A 10.629921,10.629921 -0.000000 1 0 95.669291,1016.929134 10.629921,10.629921 -0.000000 1 0 116.929134,1016.929134 z"
|
||||
style="stroke:#000000;stroke-width:1.0;fill:none;stroke-linecap: round"
|
||||
id="path62" />
|
||||
<path
|
||||
d="M 1024.015748,1016.929134 A 10.629921,10.629921 -0.000000 1 0 1002.755906,1016.929134 10.629921,10.629921 -0.000000 1 0 1024.015748,1016.929134 z"
|
||||
style="stroke:#000000;stroke-width:1.0;fill:none;stroke-linecap: round"
|
||||
id="path64" />
|
||||
<path
|
||||
d="M 917.716535,669.685039 A 10.629921,10.629921 -0.000000 1 0 896.456693,669.685039 10.629921,10.629921 -0.000000 1 0 917.716535,669.685039 z"
|
||||
style="stroke:#000000;stroke-width:1.0;fill:none;stroke-linecap: round"
|
||||
id="path66" />
|
||||
<path
|
||||
d="M 651.968504,669.685039 A 10.629921,10.629921 -0.000000 1 0 630.708661,669.685039 10.629921,10.629921 -0.000000 1 0 651.968504,669.685039 z"
|
||||
style="stroke:#000000;stroke-width:1.0;fill:none;stroke-linecap: round"
|
||||
id="path68" />
|
||||
<path
|
||||
d="M 187.795276,669.685039 A 10.629921,10.629921 -0.000000 1 0 166.535433,669.685039 10.629921,10.629921 -0.000000 1 0 187.795276,669.685039 z"
|
||||
style="stroke:#000000;stroke-width:1.0;fill:none;stroke-linecap: round"
|
||||
id="path70" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
2128
beplating/stand1.dxf
Normal file
2128
beplating/stand1.dxf
Normal file
File diff suppressed because it is too large
Load diff
2124
beplating/stand2.dxf
Normal file
2124
beplating/stand2.dxf
Normal file
File diff suppressed because it is too large
Load diff
216
beplating/stands 4.5cm.svg
Normal file
216
beplating/stands 4.5cm.svg
Normal file
|
@ -0,0 +1,216 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="744.094488189"
|
||||
height="1052.36220472"
|
||||
id="svg3004"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="stands 8cm.svg">
|
||||
<metadata
|
||||
id="metadata3051">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1185"
|
||||
inkscape:window-height="943"
|
||||
id="namedview3049"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.96253025"
|
||||
inkscape:cx="378.42688"
|
||||
inkscape:cy="180.13987"
|
||||
inkscape:window-x="138"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g3023" />
|
||||
<desc
|
||||
id="desc3006">/home/mro/prive/lasercutter/stand1.dxf - scale = 1.000000</desc>
|
||||
<defs
|
||||
id="defs3008">
|
||||
<marker
|
||||
id="DistanceX"
|
||||
orient="auto"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||
style="stroke:#000000; stroke-width:0.5"
|
||||
id="path3011" />
|
||||
</marker>
|
||||
<pattern
|
||||
height="8"
|
||||
id="Hatch"
|
||||
patternUnits="userSpaceOnUse"
|
||||
width="8"
|
||||
x="0"
|
||||
y="0">
|
||||
<path
|
||||
d="M8 4 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3014" />
|
||||
<path
|
||||
d="M6 2 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3016" />
|
||||
<path
|
||||
d="M4 0 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3018" />
|
||||
</pattern>
|
||||
<symbol
|
||||
id="*Model_Space" />
|
||||
<symbol
|
||||
id="*Paper_Space" />
|
||||
<symbol
|
||||
id="*Paper_Space0" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="0"
|
||||
id="g3023">
|
||||
<path
|
||||
d="m 0.49641089,1052.1836 105.93986911,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.35827053;stroke-linecap:round"
|
||||
id="path3025"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 53.149606,981.80262 0,-123.51173"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.66009235;stroke-linecap:round"
|
||||
id="path3027"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.460163;stroke-linecap:round"
|
||||
d="m 0.05775225,981.45972 0,70.40428 0,-70.40428 z"
|
||||
id="path3029"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 106.26858,1051.9474 0,-98.99685"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.28864416;stroke-linecap:round"
|
||||
id="path3031"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 0.29762843,981.19841 53.14960557,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.59525687;stroke-linecap:round"
|
||||
id="path3033"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 106.76626,952.97776 13.23913,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.34364527;stroke-linecap:round"
|
||||
id="path3035"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 120.11836,1052.1944 0,-98.87708"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.44909185;stroke-linecap:round"
|
||||
id="path3037"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 53.149998,856.98029 120.472002,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.99999821;stroke-linecap:round"
|
||||
id="path3039"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 173.62205,981.80247 0,-123.51291"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.66009551;stroke-linecap:round"
|
||||
id="path3041"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 173.5689,982.26494 53.25324,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.00352411;stroke-linecap:round"
|
||||
id="path3043"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 226.95236,1052.1821 0,-69.88006"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.36074919;stroke-linecap:round"
|
||||
id="path3045"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 120.93882,1052.4751 105.36645,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.00141601;stroke-linecap:round"
|
||||
id="path3047"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 248.90325,1052.0707 226.00734,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.52329022;stroke-linecap:round"
|
||||
id="path3025-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 301.35343,981.68968 0,-123.51173"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.66009235;stroke-linecap:round"
|
||||
id="path3027-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.460163;stroke-linecap:round"
|
||||
d="m 248.26158,981.34678 0,70.40432 0,-70.40432 z"
|
||||
id="path3029-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 354.4724,956.54857 0,-98.99689"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.28864416;stroke-linecap:round"
|
||||
id="path3031-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 248.50145,981.08547 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.59525687;stroke-linecap:round"
|
||||
id="path3033-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 354.97008,952.97776 13.23913,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.34364527;stroke-linecap:round"
|
||||
id="path3035-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 368.32218,956.46835 0,-98.87712"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.44909185;stroke-linecap:round"
|
||||
id="path3037-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 301.35382,856.86735 120.472,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.99999821;stroke-linecap:round"
|
||||
id="path3039-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 421.82587,981.68953 0,-123.51291"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.66009551;stroke-linecap:round"
|
||||
id="path3041-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 421.77272,982.152 53.25324,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.00352411;stroke-linecap:round"
|
||||
id="path3043-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 475.15618,1052.0692 0,-69.8801"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.36074919;stroke-linecap:round"
|
||||
id="path3045-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.2 KiB |
332
beplating/stands 8cm.svg
Normal file
332
beplating/stands 8cm.svg
Normal file
|
@ -0,0 +1,332 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="744.094488189"
|
||||
height="1052.36220472"
|
||||
id="svg3004"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="stand1.dxf">
|
||||
<metadata
|
||||
id="metadata3051">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1185"
|
||||
inkscape:window-height="943"
|
||||
id="namedview3049"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2900929"
|
||||
inkscape:cx="378.42688"
|
||||
inkscape:cy="180.13987"
|
||||
inkscape:window-x="617"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g3023" />
|
||||
<desc
|
||||
id="desc3006">/home/mro/prive/lasercutter/stand1.dxf - scale = 1.000000</desc>
|
||||
<defs
|
||||
id="defs3008">
|
||||
<marker
|
||||
id="DistanceX"
|
||||
orient="auto"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||
style="stroke:#000000; stroke-width:0.5"
|
||||
id="path3011" />
|
||||
</marker>
|
||||
<pattern
|
||||
height="8"
|
||||
id="Hatch"
|
||||
patternUnits="userSpaceOnUse"
|
||||
width="8"
|
||||
x="0"
|
||||
y="0">
|
||||
<path
|
||||
d="M8 4 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3014" />
|
||||
<path
|
||||
d="M6 2 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3016" />
|
||||
<path
|
||||
d="M4 0 l-4,4"
|
||||
linecap="square"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
id="path3018" />
|
||||
</pattern>
|
||||
<symbol
|
||||
id="*Model_Space" />
|
||||
<symbol
|
||||
id="*Paper_Space" />
|
||||
<symbol
|
||||
id="*Paper_Space0" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="0"
|
||||
id="g3023">
|
||||
<path
|
||||
d="M 0.000000,1052.362205 106.299213,1052.362205"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3025" />
|
||||
<path
|
||||
d="m 53.149606,981.62238 0,-211.85106"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86450183;stroke-linecap:round"
|
||||
id="path3027"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
d="M 0 981.5 L 0 1052.375 L 0 981.5 z "
|
||||
id="path3029" />
|
||||
<path
|
||||
d="M 106.299213,1052.362205 106.299213,875.196850"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3031" />
|
||||
<path
|
||||
d="M 0.000000,981.496063 53.149606,981.496063"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3033" />
|
||||
<path
|
||||
d="M 106.299213,875.196850 120.472441,875.196850"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3035" />
|
||||
<path
|
||||
d="M 120.472441,1052.362205 120.472441,875.196850"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3037" />
|
||||
<path
|
||||
d="m 53.15,768.39762 120.47244,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3039"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 173.62205,981.62062 0,-212.84676"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3041"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 173.622047,981.496063 226.771654,981.496063"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3043" />
|
||||
<path
|
||||
d="M 226.771654,1052.362205 226.771654,981.496063"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3045" />
|
||||
<path
|
||||
d="M 120.472441,1052.362205 226.771654,1052.362205"
|
||||
style="stroke:#000000;fill:none;stroke-linecap: round"
|
||||
id="path3047" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 329.65817,981.27936 0,-212.84676"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3099" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 276.50856,1052.0209 0,-70.8661"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3101" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 276.50856,981.1548 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3103" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 382.80777,768.55611 0,177.16535"
|
||||
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round"
|
||||
id="path3105" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 329.65817,768.5561 53.1496,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3107" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 382.80777,945.72146 14.17323,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3109" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 396.981,768.55611 0,177.16535"
|
||||
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round"
|
||||
id="path3111" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 396.981,768.5561 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3113" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 450.13061,981.27936 0,-212.84676"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3115" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 450.13061,981.1548 53.1496,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3117" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 503.28021,1052.0209 0,-70.8661"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3119" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 276.50856,1052.0209 226.77165,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3121" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 194.00903,763.52913 0,212.84677"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3099-1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.85942,692.78763 0,70.8661"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3101-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.85942,763.65373 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3103-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 247.15863,976.25239 0,-177.16536"
|
||||
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round"
|
||||
id="path3105-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 194.00903,976.2524 53.1496,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3107-6" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 247.15863,799.08703 14.17323,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3109-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 261.33186,976.25239 0,-177.16536"
|
||||
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round"
|
||||
id="path3111-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 261.33186,976.2524 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3113-6" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 314.48147,763.52913 0,212.84677"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3115-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 314.48147,763.65373 53.1496,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3117-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 367.63107,692.78763 0,70.8661"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3119-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.85942,692.78763 226.77165,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3121-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 406.73174,691.87285 106.29921,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3025-4" />
|
||||
<path
|
||||
d="m 459.88135,762.61265 0,211.8511"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86450183;stroke-linecap:round"
|
||||
id="path3027-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
d="m 406.73174,762.73505 0,-70.875 0,70.875 z"
|
||||
id="path3029-6" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 513.03095,691.87285 0,177.1654"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3031-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 406.73174,762.73905 53.14961,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3033-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 513.03095,869.03825 14.17323,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3035-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 527.20418,691.87285 0,177.1654"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3037-0" />
|
||||
<path
|
||||
d="m 459.88174,975.83745 120.47244,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3039-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 580.35379,762.61445 0,212.84676"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.86653107;stroke-linecap:round"
|
||||
id="path3041-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 580.35379,762.73905 53.1496,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3043-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 633.50339,691.87285 0,70.8662"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3045-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 527.20418,691.87285 106.29921,0"
|
||||
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||
id="path3047-1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
BIN
beplating/stands.plf
Normal file
BIN
beplating/stands.plf
Normal file
Binary file not shown.
BIN
beplating/stands2.plf
Normal file
BIN
beplating/stands2.plf
Normal file
Binary file not shown.
6
beplating/wijzigingen aan machinecompartmentinside.dxf
Normal file
6
beplating/wijzigingen aan machinecompartmentinside.dxf
Normal file
|
@ -0,0 +1,6 @@
|
|||
beide zijplaten 2cm te hoog, gaten meeverplaatsen + doorvoer draad leds
|
||||
voorste zijplaat mitsumi 40 ipv 20
|
||||
plaat onder laserbuis 2* extra gaatje 1.5 cm naar voren (voor tyraps)
|
||||
staandetr achterplaat 472 van uiterste tand tot achterwand
|
||||
staanse achterplaat 285 van kortste tand (op bodemplaat)
|
||||
plaatje 65*75 hart 50 2 gaten op 15*15 en 10*16 (10 is op mitsumi)
|
Loading…
Add table
Add a link
Reference in a new issue