From 64ada004baea2c7206e3da044a94b8e94c0781ee Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Wed, 2 Oct 2019 08:08:40 +0800 Subject: [PATCH] since 2.1 --- docs/lib2-t2d.md | 2 ++ docs/lib2-t3d.md | 2 ++ 2 files changed, 4 insertions(+) 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]]`.