1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 04:51:26 +02:00

width default to 1

This commit is contained in:
Justin Lin
2021-02-13 18:12:27 +08:00
parent 9717138b2b
commit df8e4ebe08

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));
}