View allAll Photos Tagged generative
A little generative art piece.
More of my artwork can be found in my online portfolio
and some prints are available
From Eclipse the file is exported in dxf format and imported in Rhino. There with rhinoscript all the lines are transformed into tubes and through user's input, connections are created in every node.
Created with Context Free using the following script
startshape gems
rule gems{
8 * {r 45} gem {}
}
rule gem{
crystals {}
gem { s 0.8 r 10 x 2.5}
}
rule crystals {
crystal { h 81.87 sat 0.8642 b 1.0000 }
crystal { h 81.87 sat 0.8642 b 1.0000 r 90}
crystal { h 81.87 sat 0.8642 b 1.0000 r 180}
crystal { h 81.87 sat 0.8642 b 1.0000 r 270}
}
rule crystal {
blob {}
crystal {s 0.5 y 0.75}
crystal {s 0.5 x 0.75}
}
rule blob {
SQUARE {}
blob {s 0.9 b - 0.1 r 5}
}