<?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>Thema "Re: &amp;quot;For&amp;quot; für teile der Variable" in Programmierung</title>
    <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437675#M1336</link>
    <description>Das bedingt aber i if abfragen.&lt;BR /&gt;Das wollte ich eben eleganter lösen und in die For - Schleife einbauen.</description>
    <pubDate>Mon, 08 Oct 2012 14:43:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-10-08T14:43:18Z</dc:date>
    <item>
      <title>"For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437673#M1334</link>
      <description>Folgendes Problem:&lt;BR /&gt;&lt;BR /&gt;Ich möchte i Kreisbögen mit i verschiedenen Radien zeichnen.&lt;BR /&gt;Die Radien sind Fixwerte und sind im Masterscript hinterlegt&lt;BR /&gt;(r1=..,r2=..,r3=...........ri=....)&lt;BR /&gt;&lt;BR /&gt;Wie kann ich in der For schleife auf diese Radien zugreifen?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for i = 1 to Step_&lt;BR /&gt;arc2 0,0, ri, -DarWin/2, DarWin/2       &lt;BR /&gt;next i</description>
      <pubDate>Mon, 08 Oct 2012 11:25:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437673#M1334</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-08T11:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: "For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437674#M1335</link>
      <description>Verwende innerhalb der Schleife einen einzigen Parameter für den Radius.&lt;BR /&gt;Vor dem Ende der Schleife änderst du diesen Parameter nach i..&lt;BR /&gt;&lt;BR /&gt;or i = 1 to Step_&lt;BR /&gt;arc2 0,0, ri, -DarWin/2, DarWin/2 &lt;BR /&gt;&lt;BR /&gt;if i=2 then ri=r2&lt;BR /&gt;if i=3 then ri=r3&lt;BR /&gt;if i=4 then ri=r3&lt;BR /&gt;.....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;next i</description>
      <pubDate>Mon, 08 Oct 2012 12:59:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437674#M1335</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2012-10-08T12:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: "For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437675#M1336</link>
      <description>Das bedingt aber i if abfragen.&lt;BR /&gt;Das wollte ich eben eleganter lösen und in die For - Schleife einbauen.</description>
      <pubDate>Mon, 08 Oct 2012 14:43:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437675#M1336</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-08T14:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: "For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437676#M1337</link>
      <description>&lt;PRE&gt;PUT r1,r2,r3,r4&lt;BR /&gt;FOR i = 1 TO nsp&lt;BR /&gt;ARC2 0,0, GET(1), -DarWin/2, DarWin/2&lt;BR /&gt;NEXT i&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;oder:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;! *** Master&lt;BR /&gt;DIM rn[]&lt;BR /&gt;rn[1]=0.1&lt;BR /&gt;rn[2]=0.2&lt;BR /&gt;rn[3]=0.3&lt;BR /&gt;rn[4]=0.4&lt;BR /&gt;&lt;BR /&gt;!*** 2D-Skript&lt;BR /&gt;FOR i = 1 TO VARDIM1(rn)&lt;BR /&gt;ARC2 0,0, rn[i], -DarWin/2, DarWin/2&lt;BR /&gt;NEXT i&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Oct 2012 08:08:24 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437676#M1337</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-09T08:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: "For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437677#M1338</link>
      <description>Danke - auch von mir!</description>
      <pubDate>Tue, 09 Oct 2012 09:31:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437677#M1338</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2012-10-09T09:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: "For" für teile der Variable</title>
      <link>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437678#M1339</link>
      <description>Danke!&lt;BR /&gt;Werd ich gleich ausprobieren!!</description>
      <pubDate>Tue, 09 Oct 2012 12:37:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/quot-For-quot-f%C3%BCr-teile-der-Variable/m-p/437678#M1339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-09T12:37:55Z</dc:date>
    </item>
  </channel>
</rss>

