1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 04:51:26 +02:00

updated doc

This commit is contained in:
Justin Lin
2017-05-19 11:30:20 +08:00
parent 34b03780d1
commit 6908ecdf36
4 changed files with 11 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -23,20 +23,20 @@ Puts children along the given path. If there's only one child, it will put the c
include <along_with.scad>;
include <circle_path.scad>;
$fn = 24;
points = circle_path(radius = 50);
along_with(points) {
linear_extrude(10) text("A", valign = "center", halign = "center");
linear_extrude(5) circle(2);
sphere(1);
cube(5);
linear_extrude(10) text("A", valign = "center", halign = "center");
linear_extrude(5) circle(2);
sphere(1);
cube(5);
linear_extrude(10, center = true) text("A", valign = "center", halign = "center");
linear_extrude(5, center = true) circle(2);
sphere(1);
cube(5);
linear_extrude(10, center = true) text("A", valign = "center", halign = "center");
linear_extrude(5, center = true) circle(2);
sphere(1);
cube(5);
}
![along_with](images/lib-along_with-2.JPG)