Skip to content

Instantly share code, notes, and snippets.

@twonk

twonk/motormount Secret

Created March 27, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twonk/d54f20d8f442c3f8a183 to your computer and use it in GitHub Desktop.
Save twonk/d54f20d8f442c3f8a183 to your computer and use it in GitHub Desktop.
Motor mounting bracket for hovercraft
module bracket() {
difference(){
union(){
translate([-3,0,0]){
cube([30,4,10]);
}
translate([31,2,0]){
difference(){
cylinder(h=5,r=5,centre=false, $fn=100);
cylinder(h=5,r=3.2,centre=false, $fn=100);
}
}
}
translate([2,0,2]){
cube([2.4,4,8]);
}
translate([4.3,0,2]){
cube([4.5,4,4.5]);
}
translate([5.5,-1,5]){
rotate([270,0,0]){
cylinder(h=10,r=3.5);
}
}
translate([8,0,10]){
rotate([0,14,0]){
cube([20,4,8]);
}
}
}
}
bracket();
translate([0,70,0]){
bracket() ;
}
//joining cubes
cube([8,72,2]);
translate([30,6,0]){
cube([2,62,5]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment