mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-01 18:54:39 +02:00
updated doc
This commit is contained in:
@@ -15,7 +15,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);
|
||||
arc(radius = 20, angle = [45, 290], width = 2);
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||
@@ -23,7 +23,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, angle = [45, 290], width = 2, width_mode = "LINE_OUTWARD");
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||
@@ -31,7 +31,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, angle = [45, 290], width = 2, width_mode = "LINE_INWARD");
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||
|
Reference in New Issue
Block a user