<?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: Obtaining texture UV coordinates in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984289#M79370</link>
    <description>Yes, maybe you are setting vertices in feet, but the UV's are in meters.&lt;BR /&gt;</description>
    <pubDate>Mon, 07 May 2018 10:45:34 GMT</pubDate>
    <dc:creator>pfk</dc:creator>
    <dc:date>2018-05-07T10:45:34Z</dc:date>
    <item>
      <title>Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3933391#M79358</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue where I have coded a Revit plugin which renders a scene - and calculates the UV coordinates for each vertex.&amp;nbsp; Unfortunately there are a number of situations where UV mapping is wrong - even with planar mapping.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, the attached image images shows the results from UV mapping (on the right), verses the "Realistic" viewport setting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, the horizontal surface is uncorrectly mapped.&amp;nbsp; MR does not have this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code to calculate the UV is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;foreach (Face face in solid.Faces)
{
    PlanarFace planarFace = face as PlanarFace;
    CylindricalFace cylindricalFace = face as CylindricalFace;
    ConicalFace conicalFace = face as ConicalFace;
    RevolvedFace revolvedFace = face as RevolvedFace;
    HermiteFace hermiteFace = face as HermiteFace;
    RuledFace ruledFace = face as RuledFace;

    for (int v = 0; v &amp;lt; 3; ++v)
    {
        XYZ pointXYZ = triangle.get_Vertex(v); 

        IntersectionResult ir = face.Project(pointXYZ);

        // Calculate the UV's if the face is planar
        if (planarFace != null)
        {
            if (ir != null)
            {
                m_Uvws[uvIndex].U = ir.UVPoint.U;
                m_Uvws[uvIndex].V = ir.UVPoint.V;
            }
        }
        else if (cylindricalFace != null)
        {
            if (ir != null)
            {
                ....&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is, how can I get correct UV's?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(EDIT: I have invested a significant amount of time trying to implement the approach outlined in &lt;A href="http://thebuildingcoder.typepad.com/blog/2010/02/texture-data-uv-coordinates-and-fbx.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2010/02/texture-data-uv-coordinates-and-fbx.html&lt;/A&gt; and it is simply not viable.&amp;nbsp; It is not possible to match the UV's indexs from the FBX with the vertex indexs obtained via the Revit API.&amp;nbsp; Also, FBX assigns each polygon to a RenderAppearance, rather than a Revit Material - so it is not possible to determine what the material is for a given polygon in the FBX.]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 11:08:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3933391#M79358</guid>
      <dc:creator>pfk</dc:creator>
      <dc:date>2013-05-23T11:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3946576#M79359</link>
      <description>&lt;P&gt;Dear Pfk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very sorry, the answer is no.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2013 17:08:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3946576#M79359</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2013-06-04T17:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3946997#M79360</link>
      <description>&lt;P&gt;Dear Pfk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will be happy to har that I have an update to my previous answer, and the new reply is yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One cannot get accurate UV texture mapping via the regular Revit geometry API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, correct UVs can be got from the CustomExporter via an ExportContext in Revit 2014 (a.k.a. Visualization API). The OnPolymesh callback of the context receives PolymeshTopology objects that have UVs for each mesh.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;The CustomExporter should be used for most (if not all) export and render external applications.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know how you end up making use of this! Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2013 03:42:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3946997#M79360</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2013-06-05T03:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3947006#M79361</link>
      <description>Thanks Jeremy&lt;BR /&gt;&lt;BR /&gt;I'm not quite sure how I missed this when going through the Revit 2014&lt;BR /&gt;API. Thank you for pointing it out. I will post back here with the&lt;BR /&gt;results.&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Wed, 05 Jun 2013 04:11:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3947006#M79361</guid>
      <dc:creator>pfk</dc:creator>
      <dc:date>2013-06-05T04:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3949344#M79362</link>
      <description>&lt;P&gt;Dear Paul,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wish you the best of luck with that and look forward to hearing how it goes for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hear that the UVs are obtained for polymeshes in the exporter context.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2013 02:23:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/3949344#M79362</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2013-06-07T02:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4302795#M79363</link>
      <description>&lt;P&gt;I have now implemented the solution proposed in the blog entry and can confirm that it works extremely well.&amp;nbsp; Thank you!&amp;nbsp; My only criticism is that it still doesn't allow obtaining texturemap named assigned to materials in the OnMaterial method.&amp;nbsp; I also noticed that the ArchVision RPC (cutout geometry) props do not get sent to ExportContext.&amp;nbsp; But still a huge step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 11:46:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4302795#M79363</guid>
      <dc:creator>pfk</dc:creator>
      <dc:date>2013-06-19T11:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4303221#M79364</link>
      <description>&lt;P&gt;Hello Paul,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for making progress and reporting on it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; It seems the Custom Exporter is the right tool for you to utilize. I am sorry about the textures and RPCs. However we are under rather strict copyright obligations and we are not allowed to export data for RPCs in any of our export formats, including custom exports. As for the textures, although there are no such strict restrictions, the entire material component is – technically – not part of Revit code and its internal API does not allow us to acquire texture paths, at least not easily (as far as I know). Hopefully, the material component keeps on improving going forward allowing us expanding the functionality of custom exporters in future releases of the Revit API.&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;Arnošt Löbel&lt;/P&gt;
&lt;P&gt;Autodesk Revit R&amp;amp;D&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 16:02:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4303221#M79364</guid>
      <dc:creator>arnostlobel</dc:creator>
      <dc:date>2013-06-19T16:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4323690#M79365</link>
      <description>&lt;P&gt;Here is a summary of these results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2013/07/texture-bitmap-and-uv-coordinates.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2013/07/texture-bitmap-and-uv-coordinates.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Jeremy.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2013 10:05:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/4323690#M79365</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2013-07-09T10:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/5998841#M79366</link>
      <description>&lt;P&gt;I never knew that exporting&amp;nbsp;RPC may violate copyrights.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, using custom export mechanism, there is not way of exporting RPC items like trees.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But some one told me to support RPC and I&amp;nbsp;implemented by own mechanism to export RPC items and they showed up correctly in the final display on the web.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does it violate any kind of copyright ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Subir Kumar Dutta&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2016 09:03:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/5998841#M79366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-21T09:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7739152#M79367</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;Any tips to have the simple RPC geometry (like the placeholder)?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 11:02:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7739152#M79367</guid>
      <dc:creator>kubity</dc:creator>
      <dc:date>2018-01-31T11:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984047#M79368</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;SPAN&gt;Paul，&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The texture UV coordinates which I obtained from the&amp;nbsp;&lt;SPAN&gt;CustomExporter(&lt;/SPAN&gt;IExportContext::OnPolymesh) directly is larger than UV's in Revit software. Did you know why and How can I obtain the correct UV's?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;African&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1197953"&gt;@pfk&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;I have now implemented the solution proposed in the blog entry and can confirm that it works extremely well.&amp;nbsp; Thank you!&amp;nbsp; My only criticism is that it still doesn't allow obtaining texturemap named assigned to materials in the OnMaterial method.&amp;nbsp; I also noticed that the ArchVision RPC (cutout geometry) props do not get sent to ExportContext.&amp;nbsp; But still a huge step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1197953"&gt;@pfk&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;I have now implemented the solution proposed in the blog entry and can confirm that it works extremely well.&amp;nbsp; Thank you!&amp;nbsp; My only criticism is that it still doesn't allow obtaining texturemap named assigned to materials in the OnMaterial method.&amp;nbsp; I also noticed that the ArchVision RPC (cutout geometry) props do not get sent to ExportContext.&amp;nbsp; But still a huge step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="333.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/497344i434E86C0307B6BDA/image-size/large?v=v2&amp;amp;px=999" role="button" title="333.png" alt="333.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 08:34:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984047#M79368</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-07T08:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984249#M79369</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;just my 50 cent...&lt;/P&gt;&lt;P&gt;It seems that the factor is about three point something.&lt;/P&gt;&lt;P&gt;May it be that there is a unit conversion problem, meters versus feet?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Revitalizer&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 10:14:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984249#M79369</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2018-05-07T10:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984289#M79370</link>
      <description>Yes, maybe you are setting vertices in feet, but the UV's are in meters.&lt;BR /&gt;</description>
      <pubDate>Mon, 07 May 2018 10:45:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984289#M79370</guid>
      <dc:creator>pfk</dc:creator>
      <dc:date>2018-05-07T10:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984354#M79371</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;Revitalizer,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. I have tried to &lt;SPAN&gt;unify &lt;/SPAN&gt;the vertices and UV's in feet, but it still does not correct. is&amp;nbsp;there&amp;nbsp;something like transformation for UV's?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="aaaaaaa.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/497382i03A67010FA6ABFC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="aaaaaaa.png" alt="aaaaaaa.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 11:21:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/7984354#M79371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-07T11:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/8137896#M79372</link>
      <description>&lt;P&gt;Hello we are stuck on the visualization of rpc. Which mechanism did you implement to get mesh data for RPC trees and other elements.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jul 2018 11:32:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/8137896#M79372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-18T11:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining texture UV coordinates</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/8147967#M79373</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;RPC are not supported now, just the geometry, not the textures. As developers, we cannot add this functionality for the moment as it's limited by Autodesk restrictions.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Hope I was able to answer your question.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers,&amp;nbsp;&lt;BR /&gt;Nathan&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:14:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/obtaining-texture-uv-coordinates/m-p/8147967#M79373</guid>
      <dc:creator>kubity</dc:creator>
      <dc:date>2018-07-23T09:14:51Z</dc:date>
    </item>
  </channel>
</rss>

