1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 04:20:27 +02:00

move to example

This commit is contained in:
Justin Lin
2020-04-13 20:18:55 +08:00
parent 8c53b41fd9
commit 479a0be438
2 changed files with 11 additions and 12 deletions

View File

@@ -1,4 +1,15 @@
use <experimental/lsystem2.scad>;
use <line2d.scad>;
for(line = koch_curve_3()) {
line2d(
line[0],
line[1],
.2,
p1Style = "CAP_ROUND",
p2Style = "CAP_ROUND"
);
}
function tree(n = 2, angle = 36, leng = 1, heading = 0, start = [0, 0]) =
let(

View File

@@ -1,12 +0,0 @@
use <experimental/lsystem2_collections.scad>;
use <line2d.scad>;
for(line = sierpinski_square()) {
line2d(
line[0],
line[1],
.5,
p1Style = "CAP_ROUND",
p2Style = "CAP_ROUND"
);
}