From 48e52fa48b0fb56684768853a9d0245986f7e4ac Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 10 May 2019 14:09:39 +0800 Subject: [PATCH] update doc --- docs/lib-arc_path.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/lib-arc_path.md b/docs/lib-arc_path.md index 5419c235..d4828440 100644 --- a/docs/lib-arc_path.md +++ b/docs/lib-arc_path.md @@ -15,8 +15,8 @@ Creates an arc path. You can pass a 2 element vector to define the central angle include ; $fn = 24; - points = arc_path(radius = 20, angle = [45, 290], width = 2); - hull_polyline2d(points); + points = arc_path(radius = 20, angle = [45, 290]); + hull_polyline2d(points, width = 2); ![arc_path](images/lib-arc_path-1.JPG) @@ -24,8 +24,8 @@ Creates an arc path. You can pass a 2 element vector to define the central angle include ; $fn = 24; - points = arc_path(radius = 20, angle = 135, width = 2); - hull_polyline2d(points); + points = arc_path(radius = 20, angle = 135); + hull_polyline2d(points, width = 2); ![arc_path](images/lib-arc_path-2.JPG)