Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save banhill/201f8610d67aba6bcc26972362b035b7 to your computer and use it in GitHub Desktop.

Select an option

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.
// 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] );
}
}
@banhill
Copy link
Author

banhill commented Feb 9, 2026

Screenshot from 2026-02-09 18-29-21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment