1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-10 16:54:23 +02:00

width default to 1

This commit is contained in:
Justin Lin
2021-02-13 18:12:27 +08:00
parent df13e20fa2
commit 7f4ea3f935

View File

@@ -10,6 +10,6 @@
use <shape_arc.scad>;
module arc(radius, angle, width, width_mode = "LINE_CROSS") {
module arc(radius, angle, width = 1, width_mode = "LINE_CROSS") {
polygon(shape_arc(radius, angle, width, width_mode));
}