From b31c3b4440b87b27522a2f50400e63d6a7ed19f7 Mon Sep 17 00:00:00 2001 From: Joshua Moerman Date: Tue, 1 May 2012 15:30:09 +0300 Subject: [PATCH] Pythagoras Tree (fractal) --- py_tree | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py_tree b/py_tree index 18b5b0c..4a8f71a 100644 --- a/py_tree +++ b/py_tree @@ -1,6 +1,6 @@ -- will make a pythagorian tree-like thing with a given depth (depth 0 are leaves) -- this is a costy operation and takes lots of blocks (you can refill during the build) --- depth 1 => 8 blocks, depth 2 => 64 blocks, depth 3 => ~384 blocks, depth n => 2^(2n + 1)*n (some blocks may overlap) +-- depth 1 => 8 blocks, depth 2 => 32 blocks, depth 3 => ~128 blocks, depth n => 2^(2n + 1) (some blocks may overlap) -- we will always face to the tree and not move forward -- orientation will define left/right/up/down