Created
May 5, 2019 18:21
-
-
Save simias/7aba69b192087c19b9e0323f82229626 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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