<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
        <title>Generative Design Comments</title>
        <link>http://www.generative-gestaltung.de/1/</link>
        <description>Generative Design</description>
        <dc:language>en</dc:language>
        <dc:creator>info@generative-design.com</dc:creator>
        <dc:rights>Copyright 2024</dc:rights>
                    <item>
                <title>2021-05-28 @ 12:34 am | Comment by Abhinit</title>
                <link>http://www.generative-gestaltung.de/1/code/show/78#comment_8236</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/78#comment_8236</guid>
                <description><![CDATA[
                <p>Hi,<br />i'm getting "generativedesign" package not founbd error while running in Processeing 3.5.4. Amy I missing some files?<br /><br />If yes, then can you help me resolve this issue?<br /><br />Many thanks!</p>                ]]></description>
                <pubDate>Fri, 28 May 2021 00:34:05 +0200</pubDate>
            </item>
                    <item>
                <title>2020-11-03 @ 9:50 am | Comment by Manuela</title>
                <link>http://www.generative-gestaltung.de/1/code/show/42#comment_8235</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/42#comment_8235</guid>
                <description><![CDATA[
                <p>Hi, could you please explain why the counter value always starts at 50:    i.e. the first rectangle always has the counter 50, regardless of  where  the mouse goes. If maximum number of rectangls, I get the counter  from  50 to 498. I would have expected it to start from 0. Thanks a  lot!</p>                ]]></description>
                <pubDate>Tue, 03 Nov 2020 09:50:53 +0100</pubDate>
            </item>
                    <item>
                <title>2020-10-26 @ 9:05 pm | Comment by Manuela</title>
                <link>http://www.generative-gestaltung.de/1/code/show/129#comment_8234</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/129#comment_8234</guid>
                <description><![CDATA[
                <p>Can you please check code for P_1_2_2_01? It seems that it's missing? Thanks!</p>                ]]></description>
                <pubDate>Mon, 26 Oct 2020 21:05:11 +0100</pubDate>
            </item>
                    <item>
                <title>2020-03-15 @ 8:56 pm | Comment by Smmsamm</title>
                <link>http://www.generative-gestaltung.de/1/code/show/123#comment_8233</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/123#comment_8233</guid>
                <description><![CDATA[
                <p>I found my answer by using transparent png file.<br />now another question is:<br />Is it possible to prevent ovelapping text for create Words cloud?</p>                ]]></description>
                <pubDate>Sun, 15 Mar 2020 20:56:28 +0100</pubDate>
            </item>
                    <item>
                <title>2020-03-15 @ 7:52 pm | Comment by sMMSAMM</title>
                <link>http://www.generative-gestaltung.de/1/code/show/123#comment_8232</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/123#comment_8232</guid>
                <description><![CDATA[
                <p>Is it possible to add a mask for it? for example drawing in the inside of the circle only?</p>                ]]></description>
                <pubDate>Sun, 15 Mar 2020 19:52:16 +0100</pubDate>
            </item>
                    <item>
                <title>2020-03-10 @ 12:36 pm | Comment by Pablo</title>
                <link>http://www.generative-gestaltung.de/1/code/show/42#comment_8231</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/42#comment_8231</guid>
                <description><![CDATA[
                <p>Hello !</p>
<p>Quick question : Why are the arrays of color component values  ( hueValues[],  saturationValues[] and brightnessValues[]) the size of "tileCountX" if at the end you are using a max 3 values of each one ( because of the modulo operator )  ??</p>
<p> </p>
<p> </p>                ]]></description>
                <pubDate>Tue, 10 Mar 2020 12:36:05 +0100</pubDate>
            </item>
                    <item>
                <title>2019-11-25 @ 3:07 am | Comment by fang</title>
                <link>http://www.generative-gestaltung.de/1/code/show/43#comment_8230</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/43#comment_8230</guid>
                <description><![CDATA[
                <p>Can you explain this part? I really can't understand...Thank you!</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<span>int</span> counter <span>=</span> <span>0</span>;

<span><span>//</span> row count and row height</span>

<span>int</span> rowCount <span>=</span> (<span>int</span>)<span>random</span>(<span>5</span>,<span>40</span>);

<span>float</span> rowHeight <span>=</span> (<span>float</span>)<span>height</span><span>/</span>(<span>float</span>)rowCount;



<span>for</span>(<span>int</span> i<span>=</span><span>0</span>; i<span>&lt;</span>rowCount; i<span>++</span>) {

<span><span>//</span> seperate each line in parts </span>

<span><span>//</span> how many fragments</span>

<span>int</span> partCount <span>=</span> i<span>+</span><span>1</span>;

<span>float</span>[] parts <span>=</span> <span>new</span> <span>float</span>[<span>0</span>];



<span>for</span>(<span>int</span> ii<span>=</span><span>0</span>; ii<span>&lt;</span>partCount; ii<span>++</span>) {

<span><span>//</span> sub fragments or not?</span>

<span>if</span> (<span>random</span>(<span>1.0</span>) <span>&lt;</span> <span>0.075</span>) {

<span><span>//</span> take care of big values </span>

<span>int</span> fragments <span>=</span> (<span>int</span>)<span>random</span>(<span>2</span>,<span>20</span>);

partCount <span>=</span> partCount <span>+</span> fragments;

<span>for</span>(<span>int</span> iii<span>=</span><span>0</span>; iii<span>&lt;</span>fragments; iii<span>++</span>) {

parts <span>=</span> <span>append</span>(parts, <span>random</span>(<span>2</span>));

}

}

<span>else</span> {

parts <span>=</span> <span>append</span>(parts, <span>random</span>(<span>2</span>,<span>20</span>));

}

}



<span><span>//</span> add all subparts</span>

<span>float</span> sumPartsTotal <span>=</span> <span>0</span>;

<span>for</span>(<span>int</span> ii<span>=</span><span>0</span>; ii<span>&lt;</span>partCount; ii<span>++</span>) sumPartsTotal <span>+=</span> parts[ii];



<span><span>//</span> draw rects</span>

<span>float</span> sumPartsNow <span>=</span> <span>0</span>;

<span>for</span>(<span>int</span> ii<span>=</span><span>0</span>; ii<span>&lt;</span>parts<span>.</span>length; ii<span>++</span>) {

<span><span>//</span> get component color values</span>

<span>int</span> index <span>=</span> counter <span>%</span> colorCount;

<span>fill</span>(hueValues[index],saturationValues[index],brightnessValues[index]);



sumPartsNow <span>+=</span> parts[ii];

<span>rect</span>(<span>map</span>(sumPartsNow, <span>0</span>,sumPartsTotal, <span>0</span>,<span>width</span>),rowHeight<span>*</span>i,

<span>map</span>(parts[ii], <span>0</span>,sumPartsTotal, <span>0</span>,<span>width</span>)<span>*-</span><span>1</span>,rowHeight);



counter<span>++</span>;

}

}
                ]]></description>
                <pubDate>Mon, 25 Nov 2019 03:07:09 +0100</pubDate>
            </item>
                    <item>
                <title>2019-10-29 @ 3:19 pm | Comment by Justdep</title>
                <link>http://www.generative-gestaltung.de/1/code/show/127#comment_8229</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/127#comment_8229</guid>
                <description><![CDATA[
                <p>hi, I'm new to processing and in the code there're "gridX" and "gridY" and I don't see them declared anywhere. so how does it work? thanks</p>                ]]></description>
                <pubDate>Tue, 29 Oct 2019 15:19:58 +0100</pubDate>
            </item>
                    <item>
                <title>2019-07-31 @ 6:05 pm | Comment by bla</title>
                <link>http://www.generative-gestaltung.de/1/code/show/76#comment_8228</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/76#comment_8228</guid>
                <description><![CDATA[
                <p>bla</p>                ]]></description>
                <pubDate>Wed, 31 Jul 2019 18:05:35 +0200</pubDate>
            </item>
                    <item>
                <title>2019-04-25 @ 12:42 pm | Comment by Marie-Louise</title>
                <link>http://www.generative-gestaltung.de/1/code/show/95#comment_8227</link>
                <guid>http://www.generative-gestaltung.de/1/code/show/95#comment_8227</guid>
                <description><![CDATA[
                <p>Hallo,</p>
<p> </p>
<p>Bei einer size Angabe von 2339px x 3441 px ist das Fenster so groß, dass ich nur einen kleinen Teil davon nutzen kann, ist es möglich sich innerhalb des Fensters zu bewegen oder dies auf die Größe meines Bildschirms zu verkleinern ohne die tatsächliche size Größe zu verändern?</p>
<p> </p>
<p>LG</p>                ]]></description>
                <pubDate>Thu, 25 Apr 2019 12:42:11 +0200</pubDate>
            </item>
            </channel>
</rss>