Skip to content

Instantly share code, notes, and snippets.

@haruo31
Last active December 14, 2020 15:14
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 haruo31/79aec19a22520e92783401d71d2c59b8 to your computer and use it in GitHub Desktop.
Save haruo31/79aec19a22520e92783401d71d2c59b8 to your computer and use it in GitHub Desktop.
cross stand(mock)
$fa=4;
$fs=0.1;
for(x=[0,180]) {
rotate([0,x,0])
difference() {
union() {
rotate([0,90,0]) linear_extrude(75)
square(6, center=true);
translate([75,0,0]) rotate([90, 0, 0]) translate([0,0,-15]) linear_extrude(60)
square(6, center=true);
translate([75,-20,0]) rotate([90, 0, 225]) linear_extrude(29)
square(6, center=true);
}
rotate([90,0,0]) translate([25,0,0]) cylinder(d=3.5, 10, center=true);
}
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
$fa=4;
$fs=0.1;
intersection() {
difference() {
union() {
rotate([90,0,0]) cylinder(d=3.2,14);
cylinder(d=10,4,center=true);
}
cylinder(d=3.5, 10,center=true);
}
cube([30,30,1.8], center=true);
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
$fa=4;
$fs=0.1;
for (x=[0,180]) {
rotate([x,0,0])
translate([0,30,0])
intersection() {
difference() {
union() {
rotate([90,0,0]) cylinder(d=6,30);
cylinder(d=10,4,center=true);
}
cylinder(d=3.5, 10,center=true);
}
cube([100,100,1.8], center=true);
}
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment