1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-07-31 20:10:36 +02:00

updated doc

This commit is contained in:
Justin Lin
2017-04-07 14:28:55 +08:00
parent 11ac5b35da
commit 073cfdce08

View File

@@ -1,4 +1,4 @@
# cylinder_spiral
# helix
Gets all points on the path of a spiral around a cylinder. Its `$fa`, `$fs` and `$fn` parameters are consistent with the `cylinder` module. It depends on the `circle_path` module so you have to include circle_path.scad.
@@ -15,12 +15,12 @@ Gets all points on the path of a spiral around a cylinder. Its `$fa`, `$fs` and
## Examples
include <circle_path.scad>;
include <cylinder_spiral.scad>;
include <helix.scad>;
include <hull_polyline3d.scad>;
$fn = 12;
points = cylinder_spiral(
points = helix(
radius = 40,
levels = 10,
level_dist = 10,
@@ -35,5 +35,5 @@ Gets all points on the path of a spiral around a cylinder. Its `$fa`, `$fs` and
hull_polyline3d(points, 2);
![cylinder_spiral](images/lib-cylinder_spiral-1.JPG)
![helix](images/lib-helix-1.JPG)