<?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: Geometry of linked files in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988078#M51836</link>
    <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;I don't know if it is the best way but here is what we created:&lt;/P&gt;&lt;P&gt;- First find all documents and linkedDocuments of the HostDocument. Since a document can be linked in another, we use recursion and store the list of RevitLinkInstances in a class variable. I wrote this quick so maybe there are some mistakes.&lt;/P&gt;&lt;PRE&gt;        internal List&amp;lt;RevitLinkInstance&amp;gt; _listRLI;
        internal static void FindAllDocuments(Document currentDoc)
        {
            FilteredElementCollector links = new FilteredElementCollector(currentDoc)
                .OfClass(typeof(RevitLinkInstance));
            foreach(Element e in links)
            {
                RevitLinkInstance rli = e as RevitLinkInstance;
                if (rli == null)
                    continue;
                if (_listRLI.Contains(rli))
                    continue;
                _listRLI.Add(rli);
                Document doc = rli.GetLinkDocument();
                FindAllDocuments(doc);
            }
        }&lt;/PRE&gt;&lt;P&gt;Then for each document (found from the RevitLinkInstance) you can collect all levels. And check if its elevation is close to the elevation of a level you already have in your list (by say 1 cm).&lt;/P&gt;</description>
    <pubDate>Mon, 26 Aug 2019 16:37:18 GMT</pubDate>
    <dc:creator>BenoitE&amp;A</dc:creator>
    <dc:date>2019-08-26T16:37:18Z</dc:date>
    <item>
      <title>Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7839989#M51826</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;I have a problem with linked files in a host Revit document.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, I create a new document, link my clients document to mine and then do my stuff in my document only, not touching the original documents. Then I send my work to the clients and they just have to link it to their own documents.&lt;/P&gt;&lt;P&gt;Since I work on Rooms and they are hosted by Views and that Views are hosted by Levels, I need to re-create all the levels of the linked document in my own document.&lt;/P&gt;&lt;P&gt;This creates a transformation between my linked documents and my host document.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, my lowest level is -19.25 in my host document and 516.70 in my linked document.&lt;/P&gt;&lt;P&gt;But when I try to use GetTransform it returns my identity :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;I&gt;&lt;P&gt;IList&amp;lt;Element&amp;gt; links = new FilteredElementCollector(uidoc.Document)&lt;BR /&gt;.OfCategory(BuiltInCategory.OST_RvtLinks)&lt;BR /&gt;.OfClass(typeof(RevitLinkInstance))&lt;BR /&gt;.ToElements();&lt;/P&gt;&lt;P&gt;foreach (Element instanceDoc in links)&lt;BR /&gt;{&lt;BR /&gt;collector = new FilteredElementCollector((instanceDoc as RevitLinkInstance).GetLinkDocument())&lt;BR /&gt;.OfClass(typeof(Level));&lt;BR /&gt;Transform t = (instanceDoc as RevitLinkInstance).GetTransform();&lt;BR /&gt;monMessage += "\r\n X " + t.BasisX&lt;BR /&gt;+ "\r\n Y " + t.BasisY&lt;BR /&gt;+ "\r\n Z " + t.BasisZ&lt;BR /&gt;+ "\r\n origine " + t.Origin&lt;BR /&gt;+ "\r\n échelle " + t.Scale;&lt;BR /&gt;}&amp;nbsp;&lt;/P&gt;&lt;/I&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea where I am wrong ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Benoit&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 01:47:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7839989#M51826</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2018-03-09T01:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7840193#M51827</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;SPAN&gt;Benoit,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please have a try using following codes:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;IList&amp;lt;Element&amp;gt; linkInstances = new FilteredElementCollector(doc).OfClass(typeof(RevitLinkInstance)).ToElements();

            if (linkInstances.Count &amp;gt; 0)
            {
                foreach (Element link in linkInstances)
                {
                    RevitLinkInstance linkInst = (link as RevitLinkInstance);


                    Transform linkTrf = linkInst.GetTotalTransform();
                }
            }&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;The linkTrf transform is the one you want.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 05:12:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7840193#M51827</guid>
      <dc:creator>JimJia</dc:creator>
      <dc:date>2018-03-09T05:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7842370#M51828</link>
      <description>&lt;P&gt;Hey Jim,&lt;/P&gt;&lt;P&gt;Thanks for your fast reply, it does not change a thing. I correctly get the RevitLinkInstance but not the transforms (which are the identity transform).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Full code below.&lt;/P&gt;&lt;P&gt;Benoit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;I&gt;&lt;P&gt;IList&amp;lt;Element&amp;gt; links = new FilteredElementCollector(uidoc.Document)&lt;BR /&gt;.OfClass(typeof(RevitLinkInstance))&lt;BR /&gt;.ToElements();&lt;/P&gt;&lt;P&gt;monMessage += "\r\n Document Hote " + uidoc.Document.PathName;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FilteredElementCollector collector = new FilteredElementCollector(uidoc.Document)&lt;BR /&gt;.OfClass(typeof(Level));&lt;BR /&gt;foreach (Element niveau in collector)&lt;BR /&gt;{&lt;BR /&gt;monMessage += "\r\n un niveau créé " + niveau.Name + " elevation " + (niveau as Level).Elevation;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;foreach (Element instanceDoc in links)&lt;BR /&gt;{&lt;BR /&gt;monMessage += "\r\n Document suivant " + (instanceDoc as RevitLinkInstance).GetLinkDocument().PathName;&lt;BR /&gt;collector = new FilteredElementCollector((instanceDoc as RevitLinkInstance).GetLinkDocument())&lt;BR /&gt;.OfClass(typeof(Level));&lt;BR /&gt;foreach(Element niveau in collector)&lt;BR /&gt;{&lt;BR /&gt;monMessage += "\r\n un niveau créé " + niveau.Name + " elevation " + (niveau as Level).Elevation;&lt;BR /&gt;}&lt;BR /&gt;Transform t = (instanceDoc as RevitLinkInstance).GetTransform();&lt;BR /&gt;monMessage += "\r\n X " + t.BasisX&lt;BR /&gt;+ "\r\n Y " + t.BasisY&lt;BR /&gt;+ "\r\n Z " + t.BasisZ&lt;BR /&gt;+ "\r\n origine " + t.Origin&lt;BR /&gt;+ "\r\n échelle " + t.Scale;&lt;BR /&gt;}&lt;/P&gt;&lt;/I&gt;</description>
      <pubDate>Fri, 09 Mar 2018 21:27:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7842370#M51828</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2018-03-09T21:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7842663#M51829</link>
      <description>&lt;P&gt;Works with either TotalTransform or Transform, think TotalTransform is for transformed&amp;nbsp;instances within links rather than links themselves but to be honest I've never needed to use it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the instance is orientated to the space it lies within then identity would be expected regardless of level offset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below you need to add 4.9 to the 9.8 value to get the actual level of the linked levels. If you are creating levels in your model based on a linked model then you really need to acquire co-ordinates if you want your level values to match in elevation. You need to tell your model where the elevation base should be to have the created&amp;nbsp;levels in your model&amp;nbsp;reflect the true value (according to the relative&amp;nbsp;link position and its&amp;nbsp;elevation base offset).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="Capture1003.PNG" style="width: 396px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/473378i8E6B482AC4469A9A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture1003.PNG" alt="Capture1003.PNG" /&gt;&lt;/span&gt;&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="Capture1003a.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/473379iD12C8796C498B5B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1003a.PNG" alt="Capture1003a.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Blue levels = linked model selected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I want the black levels to be representative of the blue then I need to acquire co-ordinates which will change black&amp;nbsp;level 1 to -1.5m (-4.921 ft). Alternatively&amp;nbsp;if I publish co-ordinates then blue level 1 will change to 1.5m etc. The transform will tell me where the levels are in my model but the created&amp;nbsp;level will have nonsense&amp;nbsp;values until&amp;nbsp;I acquire coordinates from the link (assuming link has correct levels and you want to acquire rather than publish).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 01:12:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7842663#M51829</guid>
      <dc:creator>RPTHOMAS108</dc:creator>
      <dc:date>2018-03-10T01:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7843445#M51830</link>
      <description>&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;Thanks for your detailed reply (as usual).&lt;/P&gt;&lt;P&gt;Yes indeed I create new levels in my host model in order to have the right view range for my views (I have large models with multiple floor elevations for the same level).&lt;/P&gt;&lt;P&gt;I thought the total transform would precisely give me this information : the offset between the basis in my host model and the basis in the linked models. If not, I don't understand what it is used for. So if it does not work I can indeed compute the offset between the values in the 2 basis&amp;nbsp;by hand and put it back into the model, it is easy but a bit unsatisfactory, right ?&lt;/P&gt;&lt;P&gt;Benoit&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7843445#M51830</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2018-03-10T19:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7843625#M51831</link>
      <description>&lt;P&gt;If you linked in the other model at 0,0,0 and it is parallel to the model co-ordinate system then there is no obvious&amp;nbsp;reason for&amp;nbsp;the .GetTransform functions but this isn't often the case for two models created by separate&amp;nbsp;teams from separate templates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The GetTotalTransform function&amp;nbsp;is also used in nested family instances i.e. what is the placement base point (origin)&amp;nbsp;and orientation (basis)&amp;nbsp;of a nested family and how does this relate to the model space the host family is located in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In relation to the .IsIdentity property it is probably badly&amp;nbsp;named because the transform&amp;nbsp;works based on&amp;nbsp;a 3x4 matrix so how can it be identity? I think we understand it to mean that it is equivalent to a 3x3 matrix&amp;nbsp;with origin set to zero and basis x,y,z pointing to their respective global axis i.e. no change from original and transformed geometry. When you use .OfPoint origin is considered when you use .OfVector origin is ignored. A transformation without origin has no translation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 22:55:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7843625#M51831</guid>
      <dc:creator>RPTHOMAS108</dc:creator>
      <dc:date>2018-03-10T22:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7852071#M51832</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;Thanks Richard for your help.&lt;/P&gt;&lt;P&gt;Still my question remains: my model's basis and my linked model's basis are clearly translated one to the other, and the TotalTransform function returns the identity transformation. So how do I get my transformation without doing it "by hand" ?&lt;/P&gt;&lt;P&gt;Benoit&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 09:18:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7852071#M51832</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2018-03-14T09:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7854483#M51833</link>
      <description>&lt;P&gt;According to the internal co-ordinate system your models share the same origin and alignment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please clarify:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;if you are inserting by origin to origin or shared coordinates?&lt;/LI&gt;&lt;LI&gt;How are you coming to the conclusion there is a translation between your models&amp;nbsp;(from Revit level values or reading internal co-ordinates)?&lt;/LI&gt;&lt;LI&gt;When you state two different level values for bottom level are different are they set to Shared or Project? If both set to project then do the differences in level still not relate to the physical gap between them?&lt;/LI&gt;&lt;LI&gt;Note that you cannot set a level to be measured from the relative location but you can set an elevation marker to this, as below. In the below example -0.366 is actually 0 in terms of internal co-ordinates. In the lookup and on the level class this is noted as ProjectElevation but that is confusing terminology since it isn't&amp;nbsp;relative to project base point (which can be moved just as the survey point can).&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1403.PNG" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/475536iEC8D2ACA51FB0AD0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1403.PNG" alt="Capture1403.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 22:33:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7854483#M51833</guid>
      <dc:creator>RPTHOMAS108</dc:creator>
      <dc:date>2018-03-14T22:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7872058#M51834</link>
      <description>&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;Sorry for the delay I had some urgent stuff.&lt;/P&gt;&lt;P&gt;So I guess I have the answer to my original question, easier than I thought.&lt;/P&gt;&lt;P&gt;Here are the answers to the questions you asked :&lt;/P&gt;&lt;P&gt;1/ I use Origin to Origin, the only way to get my 2 models at their right position (without having to modify the position after loading).&lt;/P&gt;&lt;P&gt;2/ I come to the conclusion that there is a coordinate modification between my 2 models because I check my levels elevation both in my host model and in my linked models. And I have created all the levels of my host model myself, so I know by construction that they are the same as the levels of the linked model.&lt;/P&gt;&lt;P&gt;3/ I don't understand the question. The thing is, I created the bottom level in the Host model so I know it is the same as the bottom level of my linked models. So having 2 different elevations for the same level means that the basis in which the coordinates are evaluated is not the same in host and linked model.&lt;/P&gt;&lt;P&gt;4/ ok. It drives me to the solution I have found : using ProjectElevation instead of Elevation. And this looks ok, I still need to confirm this.&lt;/P&gt;&lt;P&gt;Thank you for your time.&lt;/P&gt;&lt;P&gt;Benoit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 15:07:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/7872058#M51834</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2018-03-21T15:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988003#M51835</link>
      <description>&lt;P&gt;Dear Benoit and Richard,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you share a snippet of code illustrating how all the elevations from the different levels from the linked documents can be listed in one single coherent list?&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 15:56:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988003#M51835</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-08-26T15:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988078#M51836</link>
      <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;I don't know if it is the best way but here is what we created:&lt;/P&gt;&lt;P&gt;- First find all documents and linkedDocuments of the HostDocument. Since a document can be linked in another, we use recursion and store the list of RevitLinkInstances in a class variable. I wrote this quick so maybe there are some mistakes.&lt;/P&gt;&lt;PRE&gt;        internal List&amp;lt;RevitLinkInstance&amp;gt; _listRLI;
        internal static void FindAllDocuments(Document currentDoc)
        {
            FilteredElementCollector links = new FilteredElementCollector(currentDoc)
                .OfClass(typeof(RevitLinkInstance));
            foreach(Element e in links)
            {
                RevitLinkInstance rli = e as RevitLinkInstance;
                if (rli == null)
                    continue;
                if (_listRLI.Contains(rli))
                    continue;
                _listRLI.Add(rli);
                Document doc = rli.GetLinkDocument();
                FindAllDocuments(doc);
            }
        }&lt;/PRE&gt;&lt;P&gt;Then for each document (found from the RevitLinkInstance) you can collect all levels. And check if its elevation is close to the elevation of a level you already have in your list (by say 1 cm).&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 16:37:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988078#M51836</guid>
      <dc:creator>BenoitE&amp;A</dc:creator>
      <dc:date>2019-08-26T16:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry of linked files</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988106#M51837</link>
      <description>&lt;P&gt;Dear Benoit,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your helpful and complete answer!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All clear now, I hope.&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, 26 Aug 2019 16:54:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/geometry-of-linked-files/m-p/8988106#M51837</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-08-26T16:54:14Z</dc:date>
    </item>
  </channel>
</rss>

