From cb50b6f1ccee2339612b78d95a1f664ca084e634 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 22 May 2017 08:23:32 +0800 Subject: [PATCH] updated doc --- docs/lib-arc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/lib-arc.md b/docs/lib-arc.md index 44a9fa2a..c7367a22 100644 --- a/docs/lib-arc.md +++ b/docs/lib-arc.md @@ -15,7 +15,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its include ; $fn = 24; - arc(radius = 20, angles = [45, 290], width = 2); + arc(radius = 20, angle = [45, 290], width = 2); %circle(r = 20); ![arc](images/lib-arc-1.JPG) @@ -23,7 +23,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its include ; $fn = 24; - arc(radius = 20, angles = [45, 290], width = 2, width_mode = "LINE_OUTWARD"); + arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_OUTWARD"); %circle(r = 20); ![arc](images/lib-arc-2.JPG) @@ -31,7 +31,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its include ; $fn = 24; - arc(radius = 20, angles = [45, 290], width = 2, width_mode = "LINE_INWARD"); + arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_INWARD"); %circle(r = 20); ![arc](images/lib-arc-3.JPG)