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

updated docs

This commit is contained in:
Justin Lin
2017-05-08 10:01:10 +08:00
parent aabafa36bb
commit 6d3368d4fb
2 changed files with 13 additions and 13 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -16,20 +16,20 @@ Returns shape points and triangle indexes of a pie (circular sector) shape. They
![shape_pie](images/lib-shape_pie-1.JPG) ![shape_pie](images/lib-shape_pie-1.JPG)
include <shape_pie.scad>; include <shape_pie.scad>;
include <helix.scad>; include <helix.scad>;
include <rotate_p.scad>; include <rotate_p.scad>;
include <cross_sections.scad>; include <cross_sections.scad>;
include <polysections.scad>; include <polysections.scad>;
include <helix_extrude.scad>; include <helix_extrude.scad>;
shape_pts_tris = shape_pie(10, [45, 315], $fn = 8); shape_pts_tris = shape_pie(10, [45, 315], $fn = 8);
helix_extrude(shape_pts_tris[0], helix_extrude(shape_pts_tris[0],
radius = 40, radius = 40,
levels = 5, levels = 5,
level_dist = 20, level_dist = 20,
triangles = shape_pts_tris[1] triangles = shape_pts_tris[1]
); );
![shape_pie](images/lib-shape_pie-2.JPG) ![shape_pie](images/lib-shape_pie-2.JPG)