File:DragonCurveEvolution.gif
Summary
| Description |
English: Animated evolution of Dragon curve, generated by L-system
Čeština: Animovaný vývoj Dračí křivky, vygenerováno pomocí L-systému |
| Source | Own work |
| Author | NightElfik |
Generated with
DragonCurveEvolution {
axiom = R(400);
//axiom = [@(1)#(1) R(400)] x(400);
//axiom = [@(1)#(1) x(400)] R(400);
angle = 45;
i = 10;
LineWidth = 3;
palette = #000 #ccc;
@: SetColorIndex;
#: SetLineWidth;
R(d) => -R(d/(√2))++L(d/(√2))-;
L(d) => +R(d/(√2))--L(d/(√2))+;
x(d) => E(d);
E(d) => -E(d/(√2))++F(d/(√2))-;
F(d) => +E(d/(√2))--F(d/(√2))+;
}
Licensing
| I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |