1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-16 11:44:50 +02:00

updated doc

This commit is contained in:
Justin Lin
2017-05-07 17:09:20 +08:00
parent 7e9a0cd8cc
commit 5a172bb9a7

View File

@@ -25,7 +25,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its
include <arc.scad>;
$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 <arc.scad>;
$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)