1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-29 09:19:59 +02:00

since 2.1

This commit is contained in:
Justin Lin
2019-10-02 08:08:40 +08:00
parent 1fc7cad25e
commit 64ada004ba
2 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
An implementation of Turtle Graphics with Fluent API. It moves on the xy plane. You can get the cooridinate `[x, y]` or `angle` of its current position.
**Since: 2.1**
## Parameters
- `t` : The data of a turtle. `t2d()` with no arguments will return a turtle with the point `[0, 0]` and the angle `0`.

View File

@@ -4,6 +4,8 @@ An implementation of 3D Turtle Graphics with Fluent API. When using the function
For more details, please see [3D turtle graphics](https://openhome.cc/eGossip/OpenSCAD/3DTurtleGraphics.html).
**Since: 2.1**
## Parameters
- `t` : The data of a turtle. `t3d()` with no arguments will return a turtle with the point `[0, 0, 0]` and the unit vectors `[[1, 0, 0], [0, 1, 0], [0, 0, 1]]`.