1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-21 05:52:16 +02:00

remove offset

This commit is contained in:
Justin Lin
2019-10-06 10:06:06 +08:00
parent 9fb90341af
commit 3d29408155

View File

@@ -40,9 +40,9 @@ module ring_heart(radius, thickness) {
module ring_heart_sector(radius, angle, thickness, width) { module ring_heart_sector(radius, angle, thickness, width) {
intersection() { intersection() {
ring_heart(radius - 0.1, thickness + 0.2); ring_heart(radius, thickness + 0.2);
rotate([0, 0, angle]) rotate([0, 0, angle])
line2d([0, 0], [0, radius * 3 + width], width); line2d([0, 0], [0, radius * 3 + width + thickness], width);
} }
} }