From 5a172bb9a7340f2105b4b9203729f436262f11d6 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 7 May 2017 17:09:20 +0800 Subject: [PATCH] updated doc --- docs/lib-arc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lib-arc.md b/docs/lib-arc.md index 0dedf01c..4acef1ef 100644 --- a/docs/lib-arc.md +++ b/docs/lib-arc.md @@ -25,7 +25,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, angles = [45, 290], width = 2, width_mode = "LINE_OUTWARD"); %circle(r = 20); ![arc](images/lib-arc-2.JPG) @@ -34,7 +34,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, angles = [45, 290], width = 2, width_mode = "LINE_INWARD"); %circle(r = 20); ![arc](images/lib-arc-3.JPG)