<?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: Imported Cad Exploding in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5939373#M69026</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've already contributed an answer:&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/revit-api/explode-sat-dwg-after-import/m-p/5501232/highlight/true#M8636" target="_blank"&gt;http://forums.autodesk.com/t5/revit-api/explode-sat-dwg-after-import/m-p/5501232/highlight/true#M8636&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;Revitalizer&lt;/P&gt;</description>
    <pubDate>Mon, 07 Dec 2015 15:19:48 GMT</pubDate>
    <dc:creator>Revitalizer</dc:creator>
    <dc:date>2015-12-07T15:19:48Z</dc:date>
    <item>
      <title>Imported Cad Exploding</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5939340#M69025</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to explode an imported cad using Revit Api. how can I do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 15:04:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5939340#M69025</guid>
      <dc:creator>mm1452</dc:creator>
      <dc:date>2015-12-07T15:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Imported Cad Exploding</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5939373#M69026</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've already contributed an answer:&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/revit-api/explode-sat-dwg-after-import/m-p/5501232/highlight/true#M8636" target="_blank"&gt;http://forums.autodesk.com/t5/revit-api/explode-sat-dwg-after-import/m-p/5501232/highlight/true#M8636&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;Revitalizer&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 15:19:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5939373#M69026</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2015-12-07T15:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Imported Cad Exploding</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5940953#M69027</link>
      <description>&lt;P&gt;Hi Revitalizer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it's clear from the above link you got the solution, but it's not clear for me.&lt;BR /&gt;Could you write a piece of code clarify how to import cad and explode it or use it to create lines and text?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 09:18:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5940953#M69027</guid>
      <dc:creator>mm1452</dc:creator>
      <dc:date>2015-12-08T09:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Imported Cad Exploding</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5945447#M69028</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;each necessary step can be found either in the Revit SDK (as a sample VS project or in the RevitAPI.chm) or on Jeremy's TBC blog.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a new Family document using a proper Family template, e.g. Gereric_Model.rtf or so.&lt;/P&gt;&lt;P&gt;Import your DWG/DXF file using Document.Import(..., out ElementId).&lt;/P&gt;&lt;P&gt;The ElementId is your ImportInstance.&lt;/P&gt;&lt;P&gt;Analyze its geometry to get the Solid(s).&lt;/P&gt;&lt;P&gt;In Family context, you can create FreFormElements of solids.&lt;/P&gt;&lt;P&gt;That's the 3D stuff.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For 2D:&lt;/P&gt;&lt;P&gt;The geometry also will give you Lines and Arcs, which could be used to generate ModelCurves.&lt;/P&gt;&lt;P&gt;I don't think you can get text objects like AutoCAD's MText, but perhaps their geometric representation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using RevitLookup will help a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's all.&lt;/P&gt;&lt;P&gt;Forget the UIAutomation approach which was just a workaround for former releases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Revitalizer&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2015 12:56:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/imported-cad-exploding/m-p/5945447#M69028</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2015-12-10T12:56:09Z</dc:date>
    </item>
  </channel>
</rss>

