<div dir="ltr"><div>I am trying to use a geometry generator to accomplish the "hand-drawn" line style. <br></div><div><br></div><div>Some great recent examples by:</div><div><br></div><div> Klas Karlsson<br></div><div><a href="https://twitter.com/klaskarlsson/status/1249333750451879937">https://twitter.com/klaskarlsson/status/1249333750451879937</a></div><div><br></div><div>Hamish:</div><div><a href="https://polemic.nz/2019/11/18/foss4g-qgis-geometry-generators/">https://polemic.nz/2019/11/18/foss4g-qgis-geometry-generators/</a></div><div><br></div><div>I am using the code below from the blog post by Hamish in QGIS 3.12:</div><div><br></div><div><pre><code class="gmail-language-">make_line(
    array_foreach(
        generate_series(
            0, length($geometry), 100
        ),
        translate(
            line_interpolate_point($geometry, @element),
            rand(-10, 10),
            rand(-10, 10)
        )
    )
)<br><br></code></pre><pre><code class="gmail-language-">Here is an image of what the results look like: <a href="https://github.com/fawcett/examples/blob/master/lines.png">https://github.com/fawcett/examples/blob/master/lines.png</a><br></code></pre><pre><code class="gmail-language-">The line geometries are in blue, and the geometry generator output is in black. <br></code></pre><pre><code class="gmail-language-">Can anyone suggest what is going wrong?<br><br></code></pre><pre><code class="gmail-language-">Thank you, <br><br></code></pre><pre><code class="gmail-language-">David.<br></code></pre></div><div><br></div><div><br></div></div>