diff --git a/docs/lib2-t2d.md b/docs/lib2-t2d.md index 12c825eb..3d8a63df 100644 --- a/docs/lib2-t2d.md +++ b/docs/lib2-t2d.md @@ -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`. diff --git a/docs/lib2-t3d.md b/docs/lib2-t3d.md index 0374cbbd..20cdc444 100644 --- a/docs/lib2-t3d.md +++ b/docs/lib2-t3d.md @@ -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]]`.