add the 1x1 too

This commit is contained in:
Kaan Barmore-Genç 2023-12-30 11:13:25 -06:00
parent 2fe25600dd
commit de0ef76376
Signed by: kaan
GPG Key ID: B2E280771CD62FCF
4 changed files with 47 additions and 0 deletions

BIN
Gridfinity/EnderTopBarBase/1x1-with-teardrop.3mf (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,38 @@
include<../../lib/MCAD/teardrop.scad>;
$fn = $preview ? 8 : 360;
if ($preview) {
union() {
base();
cutouts();
}
} else {
difference() {
base();
cutouts();
}
}
module base() {
translate([-100, -100, 0])
import("1x1.stl");
}
module cutouts() {
for (j=[0:1:1]) {
// vertical
for(i=[0:1:1]) {
// horizontal
translate([0, -3 + i*26, 8 + j*26])
magnet_teardrop();
}
}
}
module magnet_teardrop() {
color("red")
teardrop(3.2, 2.85, 90);
}

BIN
Gridfinity/EnderTopBarBase/1x1-with-teardrop.stl (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Gridfinity/EnderTopBarBase/1x1.stl (Stored with Git LFS) Normal file

Binary file not shown.