<?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 Jeremy's setoutpoint in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5366855#M75156</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Was working with setoutpoint example on structural foundations. The code places the points on one foundation but not on the other. Both of them are same family. Have attached the code[visual studio 2010 solution] and the revit project file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Oct 2014 06:05:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-29T06:05:10Z</dc:date>
    <item>
      <title>Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5366855#M75156</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Was working with setoutpoint example on structural foundations. The code places the points on one foundation but not on the other. Both of them are same family. Have attached the code[visual studio 2010 solution] and the revit project file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2014 06:05:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5366855#M75156</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-29T06:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5367121#M75157</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Dear Sanjaymann,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Thank you for stating this&amp;nbsp;interesting fact.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Would you like to explain to us why one&amp;nbsp;foundation but not on the other is processed?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Have you looked at it in the debugger?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Cheers,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: helvetica; font-size: 10pt;"&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2014 09:16:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5367121#M75157</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-29T09:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5367173#M75158</link>
      <description>&lt;P&gt;&amp;nbsp;Yes while debugging the only difference that I saw was that in the case of first foundation[top one] the code steps in the highlighted section[marked in green] of the&amp;nbsp;GetSolid function and in the case of the second foundation[bottom one] the code steps into the highlighed section[marked in red]&amp;nbsp;&lt;SPAN&gt;of the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;GetSolid function ; which should not happen as they are same elements the program&amp;nbsp;should step in the same code for both of them:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Solid GetSolid( Element e, Options opt )&lt;BR /&gt;{&lt;BR /&gt;GeometryElement geo = e.get_Geometry( opt );&lt;BR /&gt;Solid solid = null;&lt;BR /&gt;GeometryInstance inst = null;&lt;BR /&gt;Transform t = Transform.Identity;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;foreach( GeometryObject obj in geo )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; solid = obj as Solid;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if( null != solid&amp;nbsp;&amp;amp;&amp;amp; 0 &amp;lt; solid.Faces.Size )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;inst = obj as GeometryInstance;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #339966;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;if( null == solid &amp;amp;&amp;amp; null != inst )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; geo = inst.GetSymbolGeometry();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; t = inst.Transform;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; foreach( GeometryObject obj in geo )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;solid = obj as Solid;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if( null != solid&amp;nbsp;&amp;amp;&amp;amp; 0 &amp;lt; solid.Faces.Size )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;break;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;return solid;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2014 09:52:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5367173#M75158</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-29T09:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369583#M75159</link>
      <description>&lt;P&gt;Dear Sanjaymann,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aaah!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, there you are, then.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apparently, the GetSolid code is not perfect for all kinds of foundations in all situations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please be aware that the samples I present have undergone extremely limited testing and contain sample code only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will always need to test and improve them for your real life working models.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, it appears that the GetSolid method needs some improvement to handle all the cases you encounter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please research and apply those improvements, and let us know what solution you come up with to handle all the cases you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will happily publish an enhanced version for Revit 2015 once the necessary changes are known.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 07:59:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369583#M75159</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-30T07:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369653#M75160</link>
      <description>&lt;P&gt;Sure I will do some R&amp;amp;D.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in this case both foundations are absolutely same family.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 08:49:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369653#M75160</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-30T08:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369857#M75161</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The difference may be caused by the fact that one foundation can use the unmodified family symbol geometry, whereas the other one needs some kind of instance specific modification, and therefore&amp;nbsp;cannot use the unmodified symbol geometry. Does that make sense?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 10:30:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5369857#M75161</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-30T10:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5372337#M75162</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some times sword fail and needle does the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While looping the corners&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;foreach( XYZ p in corners.Keys )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the point p has to be transformed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;XYZ &lt;SPAN style="color: #ff0000;"&gt;p1&lt;/SPAN&gt; = t.OfPoint(p);&lt;BR /&gt;FamilyInstance fi= doc.Create.NewFamilyInstance( &lt;SPAN style="color: #ff0000;"&gt;p1&lt;/SPAN&gt;,symbols[1], StructuralType.NonStructural );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One line did the trick.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 10:14:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5372337#M75162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-31T10:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5372437#M75163</link>
      <description>&lt;P&gt;Dear Sanjaymann,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Congratulatins on finding the right needle for the job!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your research!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Motivated by your work, I now created a GitHub repository for the SetoutPoints application and migrated it to Revit Structure 2015:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SetoutPoints" target="_blank"&gt;https://github.com/jeremytammik/SetoutPoints&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works fine in its current state, as far as I can tell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not yet applied the change that you suggest, though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where exactly are you getting the transformation 't' from that you are applying to the point 'p' to determine 'p1', please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 11:24:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5372437#M75163</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-31T11:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376217#M75164</link>
      <description>&lt;P&gt;For getting the transformation t I have moved the code from&amp;nbsp;GetSolid function to the main code and used the &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;t&lt;/STRONG&gt; &lt;/SPAN&gt;from this code on point p&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GeometryElement geo = e.get_Geometry(opt);&lt;BR /&gt;Solid solid = null;&lt;BR /&gt;GeometryInstance inst = null;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Transform t = Transform.Identity;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;foreach (GeometryObject obj in geo)&lt;BR /&gt;{&lt;BR /&gt;solid = obj as Solid;&lt;BR /&gt;if (null != solid&lt;BR /&gt;&amp;amp;&amp;amp; 0 &amp;lt; solid.Faces.Size)&lt;BR /&gt;{&lt;BR /&gt;break;&lt;BR /&gt;}&lt;BR /&gt;inst = obj as GeometryInstance;&lt;BR /&gt;}&lt;BR /&gt;if (null == solid &amp;amp;&amp;amp; null != inst)&lt;BR /&gt;{&lt;BR /&gt;Transform tr=GetProjectLocationTransform(doc);&lt;BR /&gt;geo = inst.GetSymbolGeometry();&lt;BR /&gt;t = inst.Transform;&lt;/P&gt;&lt;P&gt;foreach (GeometryObject obj in geo)&lt;BR /&gt;{&lt;BR /&gt;solid = obj as Solid;&lt;/P&gt;&lt;P&gt;if (null != solid&lt;BR /&gt;&amp;amp;&amp;amp; 0 &amp;lt; solid.Faces.Size)&lt;BR /&gt;{&lt;BR /&gt;break;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know this would be off the topic but why do I never see any job opening for Revit programming.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2014 04:45:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376217#M75164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-03T04:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376379#M75165</link>
      <description>&lt;P&gt;Dear Sanjaymann,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for clarifying.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added the transformation as an 'out' parameter to the GetSolid method instead of moving the code out:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SetoutPoints/commit/13e134375c38573c9f45d755973359b98681db7c" target="_blank"&gt;https://github.com/jeremytammik/SetoutPoints/commit/13e134375c38573c9f45d755973359b98681db7c&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The updated solution for Revit 2015 with your transformation added is now published on GitHub:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SetoutPoints" target="_blank"&gt;https://github.com/jeremytammik/SetoutPoints&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You transformation enhancement is the content ot release 2015.0.0.1:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SetoutPoints/releases/tag/2015.0.0.1" target="_blank"&gt;https://github.com/jeremytammik/SetoutPoints/releases/tag/2015.0.0.1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll point this all out on The Building Coder, in the hope that it is of interest to others as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2014 08:02:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376379#M75165</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-11-03T08:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376523#M75166</link>
      <description>&lt;P&gt;Dear Sanjaymann,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding your question about a&lt;SPAN&gt; job opening for Revit programming, I keep hearing request from people searching for help in that area.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can submit a comment on my old blog post on&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 class="entry-header"&gt;Finding a Development Partner&lt;/H3&gt;
&lt;DIV class="entry-content"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2011/12/finding-a-development-partner.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2011/12/finding-a-development-partner.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I plan to update it sometime soon anyway.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Anybody else interested in offering his or her services is also welcome to submit comments on that post to be updated soon.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Autodesk is also looking for new employees, but we are more interested in cloud and mobile related skills:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2014/05/new-york-travel-preparation-and-adn-job-opening.html#2" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/05/new-york-travel-preparation-and-adn-job-opening.html#2&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2014/07/the-road-ahead.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/07/the-road-ahead.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2014/09/job-opportunities-events-plans-and-planes.html#2" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/09/job-opportunities-events-plans-and-planes.html#2&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2014 09:48:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376523#M75166</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-11-03T09:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Jeremy's setoutpoint</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376681#M75167</link>
      <description>&lt;P&gt;Published:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2014/11/concrete-setout-points-for-revit-structure-2015.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/11/concrete-setout-points-for-revit-structure-2015.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Enjoy!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2014 11:08:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/jeremy-s-setoutpoint/m-p/5376681#M75167</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-11-03T11:08:56Z</dc:date>
    </item>
  </channel>
</rss>

