<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Gdl unlimited copying in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641856#M7220</link>
    <description>&lt;P&gt;Hello Everyone&lt;BR /&gt;I am trying to create a grid layout with gdl. what I want is that the parameter I want is to be able to increase or decrease the number of grid lines and each time I add a grid line, a new parameter is created where I can adjust the distance between it and the previous grid line. At first I created 4 different grid lines and did the work in the program, but here I can create a maximum of 4 grid lines. what I want is to be able to create an infinite number of grid lines and I want to create a length parameter that I can change the value between each one I create.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" style="width: 268px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/80283i07AC22B4BA93FE09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" alt="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/80284i2C80D161119A5150/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" alt="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 01 Dec 2024 15:04:34 GMT</pubDate>
    <dc:creator>Bhtsz_pyd</dc:creator>
    <dc:date>2024-12-01T15:04:34Z</dc:date>
    <item>
      <title>Gdl unlimited copying</title>
      <link>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641856#M7220</link>
      <description>&lt;P&gt;Hello Everyone&lt;BR /&gt;I am trying to create a grid layout with gdl. what I want is that the parameter I want is to be able to increase or decrease the number of grid lines and each time I add a grid line, a new parameter is created where I can adjust the distance between it and the previous grid line. At first I created 4 different grid lines and did the work in the program, but here I can create a maximum of 4 grid lines. what I want is to be able to create an infinite number of grid lines and I want to create a length parameter that I can change the value between each one I create.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" style="width: 268px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/80283i07AC22B4BA93FE09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" alt="WhatsApp Image 2024-12-01 at 17.59.57.jpeg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/80284i2C80D161119A5150/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" alt="WhatsApp Image 2024-12-01 at 17.59.04.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Dec 2024 15:04:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641856#M7220</guid>
      <dc:creator>Bhtsz_pyd</dc:creator>
      <dc:date>2024-12-01T15:04:34Z</dc:date>
    </item>
    <item>
      <title>Betreff: Gdl unlimited copying</title>
      <link>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641869#M7221</link>
      <description>&lt;P&gt;For this kind of thing you will need loops in your code.&lt;/P&gt;
&lt;P&gt;And arrays (because you can not make up Parameters on the fly, meaning you need to have solution that is actually extensible).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;for i=1 to n_of_lines
    line2 0, 0, 0, B
    add2 distances[i], 0
next i&lt;/LI-CODE&gt;
&lt;P&gt;Take this very rudimentary example. (please mind that this still needs some more code to work, e.g. handling consistency between "n_of_lines" and the distances array, so you don't run into errors, because the array is too small)&lt;/P&gt;
&lt;P&gt;"n_of_lines" is your number of grid lines you want to appear.&lt;/P&gt;
&lt;P&gt;Then you draw the line, and "add2" the distances to the next grid line.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Dec 2024 22:33:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641869#M7221</guid>
      <dc:creator>runxel</dc:creator>
      <dc:date>2024-12-01T22:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Gdl unlimited copying</title>
      <link>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641883#M7222</link>
      <description>&lt;P&gt;You would probably also want to include&amp;nbsp;&lt;EM&gt;Hotlines&lt;/EM&gt; for snapping, then if you are wanting to label the grids, you will need to link and update a second array.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 01:26:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/641883#M7222</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2024-12-02T01:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Gdl unlimited copying</title>
      <link>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/643029#M7246</link>
      <description>&lt;P&gt;Thank you so much for the help.&lt;/P&gt;&lt;LI-SPOILER&gt;To create a dynamic grid layout with adjustable parameters, consider using an array or list-based approach. Each grid line should have its own adjustable distance parameter. You can apply conditional logic to create new parameters as needed. For an unlimited number of grid lines, implement a loop or recursive function to generate and control them. I pursued a PhD in literature and faced challenges while writing my academic thesis. To improve my writing skills, I sought help on various online platforms. Eventually, I came across DoMyPaper, a website that had many positive reviews. I decided to use &lt;A href="https://domypaper.com/" target="_blank"&gt;https://domypaper.com/&lt;/A&gt; services, and after my experience, my issues were resolved. I plan to utilize them for my upcoming projects as well. They have experienced writers who create personalized essays tailored to fit your budget.&lt;/LI-SPOILER&gt;</description>
      <pubDate>Tue, 24 Dec 2024 07:15:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Gdl-unlimited-copying/m-p/643029#M7246</guid>
      <dc:creator>ElijahBailey</dc:creator>
      <dc:date>2024-12-24T07:15:06Z</dc:date>
    </item>
  </channel>
</rss>

