<?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 Re: For loop to create CurveLoop Loft in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8769866#M42644</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for helping. I tested your solution by adding a taksdialog to count the CurveLoops that should be two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the GIF image below you can see what's happening. It counts 4 and in the back ground to make the proces visible i create the model curves. So you can see it makes the first one and after that the second one&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Loop.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/632943i9C6D2D0C83F1EE5E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Loop.gif" alt="Loop.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 03 May 2019 16:05:17 GMT</pubDate>
    <dc:creator>vanlion</dc:creator>
    <dc:date>2019-05-03T16:05:17Z</dc:date>
    <item>
      <title>For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8768671#M42642</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to create a loft with CreateLoftGeometry. It creates two CurveLoops from points perfectly tested with creation of model lines (see image). But how can I add both CurveLoops to the "profile3" list, so you can use it for CreateLoftGeometry? With my code for now it adds only the first CurveLoop to the list, but I need both.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 313px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/632737iBF1540BA8CC1664E/image-dimensions/313x289?v=v2" width="313" height="289" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;CurveLoop profileLoop = new CurveLoop();

List&amp;lt;CurveLoop&amp;gt; profile3 = new List&amp;lt;CurveLoop&amp;gt;();

SolidOptions options = new SolidOptions(ElementId.InvalidElementId, ElementId.InvalidElementId);
        
            for (int i = 0; i &amp;lt; p.Count - 1; ++i)
            {
                // Create lines and convert points to mm
                Line line = Line.CreateBound(p[i] / 304.8, p[i + 1] / 304.8);&lt;BR /&gt;                //Append points to CurveLoop
                profileLoop.Append(line);                
            }
		&lt;BR /&gt;	    //Here I want to add both created CurveLoops to list
            profile3.Add(profileLoop);&lt;BR /&gt;	    &lt;BR /&gt;            //Create Loft&lt;BR /&gt;&lt;FONT style="background-color: #ffffff;"&gt;	    Solid loft = GeometryCreationUtilities.CreateLoftGeometry(profile3 ,options);&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 06:44:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8768671#M42642</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-03T06:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8769805#M42643</link>
      <description>&lt;P&gt;In your snippet you are adding all the lines to one curveloop (profileLoop)&amp;nbsp;but you have to break the for loop somewhere (when the first curveLoop is created), add the curveloop to profile3, then create a different curveloop with the remaining lines in it and add it to profile3. Let's change your snippet to:&lt;/P&gt;
&lt;PRE&gt;CurveLoop profileLoop = new CurveLoop();

List&amp;lt;CurveLoop&amp;gt; profile3 = new List&amp;lt;CurveLoop&amp;gt;();

SolidOptions options = new SolidOptions(ElementId.InvalidElementId, ElementId.InvalidElementId);
        
            for (int i = 0; i &amp;lt; p.Count - 1; ++i)
            {
                // CurveLoop created with half of the points is added to profile3&lt;BR /&gt;                // and we start a new curveLoop
                if (i &amp;gt; p.Count/2)
                {
                      profile3.Add(profileLoop);
                      profileLoop = new CurveLoop();
                }
                // Create lines and convert points to mm
                Line line = Line.CreateBound(p[i] / 304.8, p[i + 1] / 304.8);
                //Append points to CurveLoop
                profileLoop.Append(line);                
            }
		
	    //Here I want to add both created CurveLoops to list
            profile3.Add(profileLoop);
	    
            //Create Loft
	    Solid loft = GeometryCreationUtilities.CreateLoftGeometry(profile3 ,options);&lt;/PRE&gt;
&lt;P&gt;Note: it seems you are taking care of the loops being closed by having duplicates of the start points. Otherwise you have to be careful about that too.&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 15:39:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8769805#M42643</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-03T15:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8769866#M42644</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for helping. I tested your solution by adding a taksdialog to count the CurveLoops that should be two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the GIF image below you can see what's happening. It counts 4 and in the back ground to make the proces visible i create the model curves. So you can see it makes the first one and after that the second one&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Loop.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/632943i9C6D2D0C83F1EE5E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Loop.gif" alt="Loop.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 16:05:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8769866#M42644</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-03T16:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8770058#M42645</link>
      <description>&lt;P&gt;Could you share your code so I can see where you added the taskdialog. I also like to know what the code does after selecting the dwg - to retrieve the points?&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 18:00:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8770058#M42645</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-03T18:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8771391#M42646</link>
      <description>&lt;P&gt;By using the&amp;nbsp;&amp;nbsp;GeometryCreationUtilities, you create a Solid not in a document but in memory.&lt;/P&gt;
&lt;P&gt;see&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2016/e829700d-48ff-0914-b288-5ceb93d8ee86.htm" target="_blank" rel="noopener"&gt;http://www.revitapidocs.com/2016/e829700d-48ff-0914-b288-5ceb93d8ee86.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create a solid ( ==&amp;nbsp; Form ) in a document use&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Form loft =  doc.FamilyCreate.NewLoftForm(true,refarrarr);&lt;/PRE&gt;
&lt;P&gt;workflow:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;create the curveloops as ModelCurves in document&lt;/LI&gt;
&lt;LI&gt;create LoftForm using the references from the ModelCurves.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Sun, 05 May 2019 01:24:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8771391#M42646</guid>
      <dc:creator>FAIR59</dc:creator>
      <dc:date>2019-05-05T01:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8772373#M42647</link>
      <description>&lt;P&gt;Hi Fair59,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for helping. Yes i know it is a memory geometry my next step was to make a Directshape of the created loft.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But i also will take a look at your solution if mine doesn't work. Good alternative!&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 07:00:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8772373#M42647</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-06T07:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8773280#M42648</link>
      <description>&lt;P&gt;I made a huge mistake, hahaha .... with that if statement, for every i&amp;gt;p.Count , a new Curveloop is created which is absolutely wrong. But if you change it to the following, I believe the result would be closer to what you expect:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;for (int i = 0; i &amp;lt; p.Count - 1; ++i)
            {
                // CurveLoop created with half of the points is added to profile3
                // and we start a new curveLoop
                if (i == (p.Count / 2) -1)
                {
                    profile3.Add(profileLoop);
                    profileLoop = new CurveLoop();
                }
                // Create lines and convert points to mm
                Line line = Line.CreateBound(p[i] / 304.8, p[i + 1] / 304.8);
                
                //Append points to CurveLoop
                profileLoop.Append(line);
            }&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 May 2019 14:17:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8773280#M42648</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-06T14:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8775688#M42649</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your answer but that's not wat i'm looking for. Maybe with the explanation below it's maybe clearer i hope. So i use two times a method to make the script not to long. Becaus of the use of methods you get a CurveLoop from pointlist 1 and a CurveLoop from pointlist 2. I need to add both results to a new list so you can use it to create a Loft. I tried something with a counter so you can get first result method and second result method. But the last step is combine the results in a new list. So you have two Curveloops in one list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;counter++&lt;BR /&gt;if (counter == 1)
       {
        for (int i = 0; i &amp;lt; p.Count - 1; ++i)
            {
            Line line = Line.CreateBound(p[i] / 304.8, p[i + 1] / 304.8);

            //Append points to CurveLoop
            profileArr.Append(line);
            profileLoop.Append(line);
      }

   profile3.Add(profileLoop);
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-05-07 151804.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/633918iC59ACBF8E424596D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-05-07 151804.png" alt="Annotation 2019-05-07 151804.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 13:28:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8775688#M42649</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-07T13:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776572#M42650</link>
      <description>&lt;P&gt;I am a little confused!! You are not adding profileArr to profile3 though ....&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 18:48:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776572#M42650</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-07T18:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776625#M42651</link>
      <description>&lt;P&gt;Sorry that doesn't need to be there. It was from a test to create a floor from the lines&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But i can't edit my post, so i can't remove it &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:11:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776625#M42651</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-07T19:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776639#M42652</link>
      <description>&lt;P&gt;and how about the counter? the whole process happens when counter equals 1&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:16:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776639#M42652</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-07T19:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776691#M42653</link>
      <description>&lt;P&gt;With the counter i get control on how many times a method is called.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In call 1 it creates the curveloop above and call 2 the curveloop below. But i need to get call 1 and call 2 together in one list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:44:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776691#M42653</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-07T19:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776702#M42654</link>
      <description>&lt;P&gt;You are adding both to profile3, right?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:47:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776702#M42654</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-07T19:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776727#M42655</link>
      <description>&lt;P&gt;Yes, that's need to be the final result so you can use the curveloop from call 1 and call 2 that are added to profile 3 to make the loft&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:57:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776727#M42655</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-07T19:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776777#M42656</link>
      <description>&lt;P&gt;So just a recap, you are calling a method (two times) and in that method a curveloop is created which is supposed to be added to your curveloop list in order to eventually create the loft geometry. You list of curveloops (profile3) cannot be created in this method though. You have two options:&lt;/P&gt;
&lt;P&gt;1- pass profile3 as a reference argument and have the curveloop added to it. something like this:&lt;/P&gt;
&lt;PRE&gt;public void CreateCurveloop( List&amp;lt;XYZ&amp;gt; p, ref List&amp;lt;CurveLoop&amp;gt; profile3)
{
     //everything that needs to be done
     profile3.Add(profileLoop);
}&lt;/PRE&gt;
&lt;P&gt;2- return the curveloop and in the scope where you call method CreateCurveLoop, create profile3 and add the return curveloop to it. Something like this:&lt;/P&gt;
&lt;PRE&gt;public CurveLoop CreateCurveloop( List&amp;lt;XYZ&amp;gt; p)
{
     //...everything that need to be done
     return profileLoop;
}

public void Sortpoints()  //or any other method
{
    //...everything else
    List&amp;lt;CurveLoop&amp;gt; profile3 = new List&amp;lt;CurveLoop&amp;gt;();
    profile3.Add(CreateCurveloop(pointList1);
    profile3.Add(CreateCurveloop(pointList2);
    ....
    Solid loft = GeometryCreationUtilities.CreateLoftGeometry(profile3 ,options);
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this answer your question?&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 20:19:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8776777#M42656</guid>
      <dc:creator>BardiaJahan</dc:creator>
      <dc:date>2019-05-07T20:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8777844#M42657</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally the second one was the sollution. What i did wrong was the moment were i call the method in a method so everything was going double. By adding the code underneath at the begin were i collect the points the result is good!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;List&amp;lt;CurveLoop&amp;gt; profile3 = new List&amp;lt;CurveLoop&amp;gt;();
profile3.Add(CreateCurveloop(sortPoints(pointsBK)));
profile3.Add(CreateCurveloop(sortPoints(pointsOK)));&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-05-08 121414.png" style="width: 458px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634235i1B468788A04B2A1C/image-dimensions/458x419?v=v2" width="458" height="419" role="button" title="Annotation 2019-05-08 121414.png" alt="Annotation 2019-05-08 121414.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 10:56:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8777844#M42657</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-08T10:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: For loop to create CurveLoop Loft</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8777853#M42658</link>
      <description>&lt;P&gt;Last Question, when you do the same in Dynamo, creating a loft from,&amp;nbsp; you can create a directShape that isn't a solid&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-05-08 125848.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634238i89AFD07DA955E1E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-05-08 125848.png" alt="Annotation 2019-05-08 125848.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-05-08 125611.png" style="width: 738px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634239i8464532CC48751E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-05-08 125611.png" alt="Annotation 2019-05-08 125611.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this also possible?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 10:59:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/for-loop-to-create-curveloop-loft/m-p/8777853#M42658</guid>
      <dc:creator>vanlion</dc:creator>
      <dc:date>2019-05-08T10:59:39Z</dc:date>
    </item>
  </channel>
</rss>

