mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-17 12:10:47 +02:00
update doc
This commit is contained in:
@@ -15,8 +15,8 @@ Creates an arc path. You can pass a 2 element vector to define the central angle
|
|||||||
include <hull_polyline2d.scad>;
|
include <hull_polyline2d.scad>;
|
||||||
|
|
||||||
$fn = 24;
|
$fn = 24;
|
||||||
points = arc_path(radius = 20, angle = [45, 290], width = 2);
|
points = arc_path(radius = 20, angle = [45, 290]);
|
||||||
hull_polyline2d(points);
|
hull_polyline2d(points, width = 2);
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@@ -24,8 +24,8 @@ Creates an arc path. You can pass a 2 element vector to define the central angle
|
|||||||
include <hull_polyline2d.scad>;
|
include <hull_polyline2d.scad>;
|
||||||
|
|
||||||
$fn = 24;
|
$fn = 24;
|
||||||
points = arc_path(radius = 20, angle = 135, width = 2);
|
points = arc_path(radius = 20, angle = 135);
|
||||||
hull_polyline2d(points);
|
hull_polyline2d(points, width = 2);
|
||||||
|
|
||||||

|

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