Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ejeklint committed Apr 5, 2015
1 parent f733bdf commit ee57a64
Show file tree
Hide file tree
Showing 13 changed files with 431,104 additions and 1 deletion.
Binary file added Connector_4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions Connector_4_L.scad
@@ -0,0 +1,27 @@
use <leg.scad>;

$fn = 50;

module legs() {
rotate([-18,0,0]) leg();
rotate([-15.86,0,60]) leg("A");
rotate([-18,0,120]) leg();
rotate([-18,0,180]) leg();
}

module holes() {
rotate([-18,0,0]) hole();
rotate([-15.86,0,60]) hole();
rotate([-18,0,120]) hole();
rotate([-18,0,180]) hole();
}

module part() {
difference() {
legs();
holes();
}
}

part();

0 comments on commit ee57a64

Please sign in to comment.