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

updated doc

This commit is contained in:
Justin Lin
2017-05-16 17:13:57 +08:00
parent a966e017a9
commit 264d7b608a

View File

@@ -25,10 +25,10 @@ If your 2D shape is not solid, indexes of triangles are required. See [polysecti
include <ring_extrude.scad>;
shape_pts = [
[-2, -10],
[-2, 10],
[2, -10],
[2, 10],
[2, -10]
[-2, 10],
[-2, -10]
];
ring_extrude(shape_pts, radius = 50, twist = 180);
@@ -41,10 +41,10 @@ If your 2D shape is not solid, indexes of triangles are required. See [polysecti
include <ring_extrude.scad>;
shape_pts = [
[-2, -10],
[-2, 10],
[2, -10],
[2, 10],
[2, -10]
[-2, 10],
[-2, -10]
];
ring_extrude(shape_pts, radius = 50, angle = 180, scale = 2);