1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00

fixed module name

This commit is contained in:
Justin Lin 2017-03-19 08:09:37 +08:00
parent 75e5050b75
commit 629ca4b706

View File

@ -18,7 +18,7 @@ module arc(radius, angles, width, width_mode = "LINE_CROSS", fn = 24) {
);
difference() {
sector(radius + w_offset[0], angles, fn);
sector(radius + w_offset[1], angles, fn);
circular_sector(radius + w_offset[0], angles, fn);
circular_sector(radius + w_offset[1], angles, fn);
}
}