mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-01 20:40:28 +02:00
update doc
This commit is contained in:
@@ -131,8 +131,8 @@ If you really don't want to care about dependencies, `include <dotSCAD.scad>;` o
|
|||||||
- px_circle
|
- px_circle
|
||||||
|
|
||||||
- Turtle
|
- Turtle
|
||||||
- [turtle2d](https://openhome.cc/eGossip/OpenSCAD/lib-turtle2d.html)
|
- [turtle2d](https://openhome.cc/eGossip/OpenSCAD/lib2-turtle2d.html)
|
||||||
- [turtle3d](https://openhome.cc/eGossip/OpenSCAD/lib-turtle3d.html)
|
- [turtle3d](https://openhome.cc/eGossip/OpenSCAD/lib2-turtle3d.html)
|
||||||
|
|
||||||
## Bugs and Feedback
|
## Bugs and Feedback
|
||||||
|
|
||||||
|
@@ -16,7 +16,7 @@ An OpenSCAD implementation of Turtle Graphics. It moves on the xy plane. You can
|
|||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
include <line2d.scad>;
|
include <line2d.scad>;
|
||||||
include <turtle2d.scad>;
|
include <turtle/turtle2d.scad>;
|
||||||
|
|
||||||
module turtle_spiral(t_before, times, side_leng, angle, width) {
|
module turtle_spiral(t_before, times, side_leng, angle, width) {
|
||||||
$fn = 24;
|
$fn = 24;
|
||||||
@@ -47,7 +47,7 @@ An OpenSCAD implementation of Turtle Graphics. It moves on the xy plane. You can
|
|||||||

|

|
||||||
|
|
||||||
include <line2d.scad>;
|
include <line2d.scad>;
|
||||||
include <turtle2d.scad>;
|
include <turtle/turtle2d.scad>;
|
||||||
|
|
||||||
module turtle_spiral(t_before, side_leng, d_step, min_leng, angle, width) {
|
module turtle_spiral(t_before, side_leng, d_step, min_leng, angle, width) {
|
||||||
$fn = 24;
|
$fn = 24;
|
@@ -15,7 +15,7 @@ For more details, please see [3D turtle graphics](https://openhome.cc/eGossip/Op
|
|||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
include <turtle3d.scad>;
|
include <turtle/turtle3d.scad>;
|
||||||
include <hull_polyline3d.scad>;
|
include <hull_polyline3d.scad>;
|
||||||
|
|
||||||
leng = 10;
|
leng = 10;
|
||||||
@@ -45,7 +45,7 @@ For more details, please see [3D turtle graphics](https://openhome.cc/eGossip/Op
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
include <turtle3d.scad>;
|
include <turtle/turtle3d.scad>;
|
||||||
include <hull_polyline3d.scad>;
|
include <hull_polyline3d.scad>;
|
||||||
|
|
||||||
module tree(t, leng, leng_scale1, leng_scale2, leng_limit,
|
module tree(t, leng, leng_scale1, leng_scale2, leng_limit,
|
Reference in New Issue
Block a user