{
let h = width < 600 ? width : 600;
let IFS = new IteratedFunctionSystem([
[
[
[0.85, 0.04],
[-0.04, 0.85]
],
[0, 1.6]
],
[
[
[-0.15, 0.28],
[0.26, 0.24]
],
[0, 0.44]
],
[
[
[0.2, -0.26],
[0.23, 0.22]
],
[0, 1.6]
],
[
[
[0, 0],
[0, 0.16]
],
[0, 0]
]
]);
return IFS.render_stochastic({
n: Math.round(40000 * (h / 600) ** 2),
image_width: h / 2,
image_height: h,
colors: ["#006600", "#00bb00", "#00aa00", "#231709"],
plist: [0.78, 0.1, 0.1, 0.02]
});
}