1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 22:58:04 +01:00
dotSCAD/docs/lib2x-turtle3d.md

90 lines
3.0 KiB
Markdown
Raw Normal View History

2017-03-31 11:07:42 +08:00
# turtle3d
2019-06-24 07:29:42 +08:00
The dir changed since 2.0.
2017-03-31 11:07:42 +08:00
An OpenSCAD implementation of 3D Turtle Graphics. When using the function, imagine that you are sitting on the turtle. You move or turn the turtle from the your viewpoint, not the viewpoint of OpenSCAD coordinates.
For more details, please see [3D turtle graphics](https://openhome.cc/eGossip/OpenSCAD/3DTurtleGraphics.html).
## Parameters
- `cmd` : A string command. Different commands use different numbers of arguments.
- `"create"` : Creates a turtle data. The simplest way is `turtle3d("create")` which creates a turtle located at `[0, 0, 0]` (and unit vectors `[[1, 0, 0], [0, 1, 0], [0, 0, 1]]`). You can pass your own starting point and unit vectors, such as `turtle3d("create", [0, 0, 0], [[1, 0, 0], [0, 1, 0], [0, 0, 1]])`.
- `"xu_move"`, `"yu_move"`, `"zu_move"` : These commands need two arguments, the turtle data and the length you want to move from your viewpoint (you sit on the turtle). For example, `"turtle3d("xu_move", turtle, 10)"`.
- `"xu_turn"`, `"yu_turn"`, `"zu_turn"` : These commands need two arguments, the turtle data and the angle you want to turn from your viewpoint (you sit on the turtle). For example, `"turtle3d("xu_turn", turtle, 45)"`.
- `"pt"` : Gets the point of the turtle. It requires one argument, the turtle data. For example, `"turtle3d("pt", turtle)"`.
- `"unit_vts"` : Gets the unit vectors of the turtle. It requires one argument, the turtle data. For example, `"turtle3d("unit_vts", turtle)"`.
## Examples
2020-01-28 17:51:20 +08:00
use <turtle/turtle3d.scad>;
use <hull_polyline3d.scad>;
2017-03-31 11:07:42 +08:00
leng = 10;
angle = 120;
thickness = 1;
t = turtle3d("create");
t2 = turtle3d("xu_move", t, leng);
hull_polyline3d(
[turtle3d("pt", t), turtle3d("pt", t2)],
thickness
);
t3 = turtle3d("xu_move", turtle3d("zu_turn", t2, angle), leng);
hull_polyline3d(
[turtle3d("pt", t2), turtle3d("pt", t3)],
thickness
);
t4 = turtle3d("xu_move", turtle3d("zu_turn", t3, angle), leng);
hull_polyline3d(
[turtle3d("pt", t3), turtle3d("pt", t4)],
thickness
);
![turtle3d](images/lib-turtle3d-1.JPG)
2020-01-28 17:51:20 +08:00
use <turtle/turtle3d.scad>;
use <hull_polyline3d.scad>;
2017-03-31 11:07:42 +08:00
module tree(t, leng, leng_scale1, leng_scale2, leng_limit,
angleZ, angleX, width) {
if(leng > leng_limit) {
t2 = turtle3d("xu_move", t, leng);
hull_polyline3d(
[turtle3d("pt", t), turtle3d("pt", t2)],
width);
tree(
turtle3d("zu_turn", t2, angleZ),
leng * leng_scale1, leng_scale1, leng_scale2, leng_limit,
angleZ, angleX,
width);
tree(
turtle3d("xu_turn", t2, angleX),
leng * leng_scale2, leng_scale1, leng_scale2, leng_limit,
angleZ, angleX,
width);
}
}
leng = 100;
leng_limit = 1;
leng_scale1 = 0.4;
leng_scale2 = 0.9;
angleZ = 60;
angleX = 135;
width = 2;
t = turtle3d("create");
tree(t, leng, leng_scale1, leng_scale2, leng_limit,
angleZ, angleX, width);
![turtle3d](images/lib-turtle3d-2.JPG)