HOME | DD

Published: 2010-10-29 13:00:06 +0000 UTC; Views: 2322; Favourites: 44; Downloads: 112
Redirect to original
Description
Structure Synth and Vue 8.Related content
Comments: 6
Mrz00m [2017-06-15 11:24:49 +0000 UTC]
i'd like to print that in 3D it would be cool to have an .scad version
👍: 0 ⏩: 0
bib993 [2012-01-30 10:24:10 +0000 UTC]
Simple and efficient. Me like! I did a similar one recently [link]
👍: 0 ⏩: 0
ChaosFissure [2011-10-18 17:02:49 +0000 UTC]
Woah, that's cool. I wish I knew how to do that kind of stuff in Synth, but I have really no clue how to use it XD Nice job, the fractal quality to it is amazing!
👍: 0 ⏩: 1
Theli-at In reply to ChaosFissure [2011-10-18 20:49:52 +0000 UTC]
I believe these are the parameters I used. The fractal is really quite simple.
set maxdepth 11
set maxobjects 200000
{ color #900 x -1 z -1 } R1
rule R1 {
{ s 0.66} R2
{ s 0.5 y 2 } R1
{ s 0.5 x 2 } R1
{ s 0.5 z 2 } R1
}
rule R2 {
{ x 0 y 1 z 0 s 0.15 2.15 0.15 } box // top
{ x 0 y 0 z 1 s 0.15 0.15 2.15 } box // top
{ x 0 y 1 z 2 s 0.15 2.15 0.15 } box // top
{ x 0 y 2 z 1 s 0.15 0.15 2.15 } box // top
{ x 1 y 0 z 0 s 2.15 0.15 0.15 } box //vertical
{ x 1 y 2 z 0 s 2.15 0.15 0.15 } box //vertical
{ x 1 y 2 z 2 s 2.15 0.15 0.15 } box //vertical
{ x 1 y 0 z 2 s 2.15 0.15 0.15 } box //vertical
{ x 2 y 1 z 0 s 0.15 2.15 0.15 } box // bottom
{ x 2 y 0 z 1 s 0.15 0.15 2.15 } box // bottom
{ x 2 y 1 z 2 s 0.15 2.15 0.15 } box // bottom
{ x 2 y 2 z 1 s 0.15 0.15 2.15 } box // bottom
{ s 3 x 0.5 z 0.5 y 0.5 color white } shape
}
rule shape {{ s 1 z -1 } box }
👍: 0 ⏩: 1
ChaosFissure In reply to Theli-at [2011-10-18 21:00:42 +0000 UTC]
Interesting I might have to try looking at this again sometime. The comments do help a lot, but it still could take a while to understand this...
👍: 0 ⏩: 0