Skip to content

Commit

Permalink
bolts added to project
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewanswer committed Jan 8, 2015
1 parent 1dbadba commit f13b197
Show file tree
Hide file tree
Showing 42 changed files with 131,336 additions and 436 deletions.
Binary file modified 3dprinter.fcstd
Binary file not shown.
Binary file modified 3dprinter.fcstd1
Binary file not shown.
Binary file added bolts/BOLTS_FreeCAD_0.3_lgpl2.1+.tar.gz
Binary file not shown.
17 changes: 17 additions & 0 deletions bolts/bolt.scad
@@ -0,0 +1,17 @@
use <cross_bolt.scad>

// DIN 7985
// http://www.tdm-neva.ru/screws/din-7985-vint.htm

//sizes=[10,12,16,20,25,30,35,40,50,60];
//metric=[3,4,5,6,8];
sizes=[10,12,16,20,25];
//sizes=[30,35,40,50,60];
metric=[8];
k=0;
l=0;
for(s=sizes) {
for(m=metric) {
translate([(s-10)*10,(m-3)*20,0])cross_bolt(m,s);
}
}

0 comments on commit f13b197

Please sign in to comment.