Created
February 9, 2026 17:17
-
-
Save banhill/201f8610d67aba6bcc26972362b035b7 to your computer and use it in GitHub Desktop.
Quick and dirty scad file for a more-or-less LEGO 4547958 compatible piece.
This file contains hidden or 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
| // https://github.com/cfinke/LEGO.scad | |
| // https://github.com/cfinke/Technic.scad | |
| use <LEGO.scad>; | |
| use <Technic.scad>; | |
| block( | |
| width=1, | |
| length=2, | |
| height=1, | |
| stud_type="hollow", | |
| brand="lego", | |
| horizontal_axle_holes="yes", | |
| horizontal_axle_hole_shape="round" | |
| ); | |
| translate([4, 2.98, 5.92]) { | |
| rotate([90, 0, 90]) { | |
| technic_beam(length = 2, height = 1/2, axle_holes = [1, 2] ); | |
| } | |
| } | |
| translate([-7.9, 2.98, 5.92]) { | |
| rotate([90, 0, 90]) { | |
| technic_beam(length = 2, height = 1/2, axle_holes = [1, 2] ); | |
| } | |
| } |
Author
banhill
commented
Feb 9, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment