Skip to content

Instantly share code, notes, and snippets.

@simias
Created May 5, 2019 18:21
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 simias/7aba69b192087c19b9e0323f82229626 to your computer and use it in GitHub Desktop.
Save simias/7aba69b192087c19b9e0323f82229626 to your computer and use it in GitHub Desktop.
linear_extrude(height=10, center=false, convexity=10, twist=45, slices=10, scale=0.5, $fn=0) {
square(size=10, center=true);
}
module obj() {
linear_extrude(height=10, center=false, convexity=10, twist=45, slices=10, scale=0.5, $fn=0) {
square(size=10, center=true);
}
}
translate([20, 0, 0]) {
rotate([180, 90, 60]) {
obj();
}
}
translate([40, 0, 0]) {
rotate([180, 0, 0]) {
rotate([0, 90, 0]) {
rotate([0, 0, 60]) {
obj();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment