aboutsummaryrefslogtreecommitdiff
path: root/src/lib/molle.scad
blob: 5f975104dba5f85979ef0571bb9a7b761ee0c9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module molle_clip(
) {
    difference() {
        translate([-16, 0, 0]) cube([32, 11, 3]);
        translate([-26/2, 3, -1]) cube([26, 4, 5]);
        translate([-26/2, 3, 2]) cube([26, 10, 2]);
        translate([5, 4, -1]) rotate([0, 0, 45]) cube([10, 3.5, 5]);
    }
}