<?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: Converting uv to position in Bifrost Forum</title>
    <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917062#M5872</link>
    <description>&lt;P&gt;Hi Maurizio,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm not quite sure why you want to deal with indices as I think spatial queries would allow you to do such effects without dealing with indices. If you have MJCG_compounds, you can have a look at deform_by_uv. It does what you are looking for using only a spatial query.&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="deform_by_uv.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/852455i29152214258DCC23/image-size/large?v=v2&amp;amp;px=999" role="button" title="deform_by_uv.jpg" alt="deform_by_uv.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Dec 2020 05:32:23 GMT</pubDate>
    <dc:creator>mjcg91</dc:creator>
    <dc:date>2020-12-05T05:32:23Z</dc:date>
    <item>
      <title>Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708797#M5856</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm able to query a geometry's closest uv at a given point, but how can I reverse that? If I have this float2 uv value then how can I convert it to a position? Was anybody able to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 17:26:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708797#M5856</guid>
      <dc:creator>labbejason</dc:creator>
      <dc:date>2020-08-24T17:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708879#M5857</link>
      <description>&lt;P&gt;You query the closest location on the UVs, but sample the location on the actual 3D geometry. Since your UVs and the 3D mesh have the same number of faces, and closest location works using barycentric coordinates, the sampled location will give you the closest position on the 3D mesh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The tricky thing is that you to construct a mesh from your UV data to do the query, because the query has to be done on the closest location on a face. query will still happen in 3D even if you input float2 as positions.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uv_to_location.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/810747iF2ECA7434812C43D/image-size/large?v=v2&amp;amp;px=999" role="button" title="uv_to_location.gif" alt="uv_to_location.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 18:04:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708879#M5857</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-08-24T18:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708965#M5858</link>
      <description>&lt;P&gt;And here's how to get the standard uv data from a mesh.&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="create_mesh_from_uv.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/810760iDA776BDB85D06619/image-size/large?v=v2&amp;amp;px=999" role="button" title="create_mesh_from_uv.jpg" alt="create_mesh_from_uv.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 18:26:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9708965#M5858</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-08-24T18:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9709691#M5859</link>
      <description>&lt;P&gt;Hey Max,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That looks really cool! So from what I understand you're building a mesh from the uvs to make that plane geometry, getting the closest location from it using the locator, then finally sampling the location's position but with the original sphere to get the red point's position?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess the thing I'm struggling with is even if I built that mesh from uvs I won't have that locator on my setup so I would have nothing to query from.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I kind of figured I would have to extract more info from my initial closest location when I get the uv value so I can use it later to map onto its updated 3d position. Which leads me to another question: how can you sample any other info from a location? For the life of me I can only pull position out of it, &lt;A href="https://help.autodesk.com/view/BIFROST/ENU/?guid=Bifrost_Common_build_a_graph_geo_query_sample_data_at_locations_html" target="_blank" rel="noopener"&gt;but from what I understand in this link&lt;/A&gt; there's way more properties that I should be able to pull. I'm not too sure what the names of the properties are and how to check though as the watchpoint is empty.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 03:18:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9709691#M5859</guid>
      <dc:creator>labbejason</dc:creator>
      <dc:date>2020-08-25T03:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9709830#M5860</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;That looks really cool! So from what I understand you're building a mesh from the uvs to make that plane geometry, getting the closest location from it using the locator, then finally sampling the location's position but with the original sphere to get the red point's position?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, that's exactly what it is doing.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;I guess the thing I'm struggling with is even if I built that mesh from uvs I won't have that locator on my setup so I would have nothing to query from.&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is using a locator in this case, with it could be anything, like another mesh's point position... If you don't plug anything in the position port you won't query anything either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;I kind of figured I would have to extract more info from my initial closest location when I get the uv value so I can use it later to map onto its updated 3d position. Which leads me to another question: how can you sample any other info from a location? For the life of me I can only pull position out of it, &lt;A href="https://help.autodesk.com/view/BIFROST/ENU/?guid=Bifrost_Common_build_a_graph_geo_query_sample_data_at_locations_html" target="_blank" rel="noopener"&gt;but from what I understand in this link&lt;/A&gt; there's way more properties that I should be able to pull. I'm not too sure what the names of the properties are and how to check though as the watchpoint is empty.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You can query almost any property from a mesh, relying on either the point_component or the face_component. You just got to make sure the "default" type you are setting on the "sample_property" match the actual property you want to query. If you can't see the data on your watchpoint, you can use a "dump_object" node to write your object to a text file. there you can see every single property it is holding, along with its data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 06:16:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9709830#M5860</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-08-25T06:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9711217#M5861</link>
      <description>&lt;P&gt;Ok! Got it working!! Thanks for the help, Max! At first I wasn't completely understanding your first post and how that relates to getting the out position, but after replicating it and playing around I got it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll share a test scene that does this so if anyone one else has the same issue they can check out the graphs where I left a few comments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This scene does the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Grabs the closest uv from the input locator&lt;/LI&gt;&lt;LI&gt;Builds a new mesh from the geometry's uvs&lt;/LI&gt;&lt;LI&gt;Takes earlier uv to convert it to an actual position that is connected to another locator&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uv_to_pos.gif" style="width: 666px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/811216i8E12613741134A35/image-size/large?v=v2&amp;amp;px=999" role="button" title="uv_to_pos.gif" alt="uv_to_pos.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So this specific example is sort of redundant, but the point is that later on if the geometry deforms but I grabbed its uvs from the start I can still use them to get its deformed positions. Basically I'm thinking of trying to do a mini wrap deformer compound that's driven by uvs.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 17:36:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9711217#M5861</guid>
      <dc:creator>labbejason</dc:creator>
      <dc:date>2020-08-25T17:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805853#M5862</link>
      <description>&lt;P&gt;Hi Maxime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just tried recreating your "create_mesh_from_uv" and I'm getting a empty mesh.&amp;nbsp; Is the data type in "map1" array&amp;lt;Math::float2&amp;gt; or array&amp;lt;Math::float3&amp;gt;?&amp;nbsp; Doesn't point position require the latter?&amp;nbsp; But "map1" should be the former.&amp;nbsp; I've tried both types and got an empty mesh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"face_offset" and "indices" should be array&amp;lt;uint&amp;gt;, right?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805853#M5862</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T21:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805893#M5863</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1312415"&gt;@mcw0&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The UV position property is&amp;nbsp;&lt;STRONG&gt;array&amp;lt;Math::float2&amp;gt;&lt;/STRONG&gt;, and face_offset and face_vertex_uv_index are &lt;STRONG&gt;array&amp;lt;uint&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also the UV position property is not longer called "map1". If you import a mesh from Maya then the UV property is called "face_vertex_uv"&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:48:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805893#M5863</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-10-15T21:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805901#M5864</link>
      <description>&lt;P&gt;Hi Maxime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't see "map1" in the watchpoint even though that's the default uvSet.&amp;nbsp; So I did try "face_vertex_uv" as that was the only property with "uv" in the name.&amp;nbsp; I'm still getting an empty mesh.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:49:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805901#M5864</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T21:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805906#M5865</link>
      <description>&lt;P&gt;I think I know what it is.&amp;nbsp; I have to also change "map1_index".&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:51:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805906#M5865</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T21:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805911#M5866</link>
      <description>&lt;P&gt;That was it.&amp;nbsp; I have a mesh now.&amp;nbsp; Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:52:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805911#M5866</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T21:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805919#M5867</link>
      <description>&lt;P&gt;But this does raise a question.&amp;nbsp; How does Bifrost handle multiple uvsets?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 21:54:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805919#M5867</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T21:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805937#M5868</link>
      <description>&lt;P&gt;Bifrost imports all uvSets with different property names.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;To get the face_vertex_uv_index you can't get it using get_geo_property.&amp;nbsp;You have to get "face_vertex_uv_index" using "get_sub_object", and then get the "indices" using "get_property"&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 22:04:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805937#M5868</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-10-15T22:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805970#M5869</link>
      <description>&lt;P&gt;Since Bifrost doesn't seem to respect uvSet names, will the properties be "face_vertex_uv", "face_vertex_uv1"...?&amp;nbsp; And of course, the same for indices?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 22:23:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9805970#M5869</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2020-10-15T22:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9806011#M5870</link>
      <description>&lt;P&gt;Yes.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 22:45:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9806011#M5870</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-10-15T22:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9916915#M5871</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5575464"&gt;@mjcg91&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Maxime,&lt;BR /&gt;I am trying to wrap one mesh to another using the UVs but I am having some troubles with it.&lt;BR /&gt;I am generating the UV meshes using your template then I get the barycentric coordinates of the two UV meshes but when I try to set the point position of the wrapped mesh the vertex IDs are obviously not matching with the UV mesh. I was wondering if there is a way to rebuild the sampled locations with the correct ids. I guess I have to find a way to convert the&amp;nbsp;&amp;nbsp;face_vertex_uv_index to the vertex ID, but I have no idea on how to do that.&lt;BR /&gt;Now that I think about it. I do not even need to generate a UV mesh I just need an array of the UV coordinates sorted per vertex ID&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Maurizio&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 02:48:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9916915#M5871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-12-05T02:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917062#M5872</link>
      <description>&lt;P&gt;Hi Maurizio,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm not quite sure why you want to deal with indices as I think spatial queries would allow you to do such effects without dealing with indices. If you have MJCG_compounds, you can have a look at deform_by_uv. It does what you are looking for using only a spatial query.&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="deform_by_uv.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/852455i29152214258DCC23/image-size/large?v=v2&amp;amp;px=999" role="button" title="deform_by_uv.jpg" alt="deform_by_uv.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 05:32:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917062#M5872</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-12-05T05:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917110#M5873</link>
      <description>&lt;P&gt;Hi Maxime,&lt;BR /&gt;what I am trying to do I think it is a bit different. I am trying to replicate the same effect of the maya transfer attribute by UV.&lt;/P&gt;&lt;P&gt;So I am creating the correspondence of the points between the two UV sets.&lt;BR /&gt;So for the target object I need the UV locations of the vertices.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the Api version my little project&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=Pn5FmfX1dJY" target="_blank"&gt;https://www.youtube.com/watch?v=Pn5FmfX1dJY&lt;/A&gt;&lt;BR /&gt;I am so close to it I just have to find a way to get the UV coordinates per vert ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 06:24:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917110#M5873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-12-05T06:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917118#M5874</link>
      <description>&lt;P&gt;I see. Technically speaking, if you are just looking for point id correspondance, a 3D vertex can be have multiple UV vertices correspondances&amp;nbsp; in the uv space, this is the case when you have a seam. The points on the seam will have more than 1 correspondance.&lt;BR /&gt;&lt;BR /&gt;Maybe you could try to spatial query the mesh on itself and use sample_property to sample face_vertex_uv.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Also this tutorial from Paul Smith could help you. It's not using UVs but it's transfering movement between different topologies.&lt;BR /&gt;&lt;BR /&gt;&lt;div class="video-embed-center video-embed-disabled"&gt;[video]&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 06:41:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917118#M5874</guid>
      <dc:creator>mjcg91</dc:creator>
      <dc:date>2020-12-05T06:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting uv to position</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917185#M5875</link>
      <description>&lt;P&gt;Yes,&lt;BR /&gt;I was aware&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5575464"&gt;@mjcg91&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I see. Technically speaking, if you are just looking for point id correspondance, a 3D vertex can be have multiple UV vertices correspondences&amp;nbsp; in the uv space, this is the case when you have a seam. The points on the seam will have more than 1 correspondence.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes I was aware of that, I think it would be fine just picking the first value that comes from the vertex.&lt;BR /&gt;I was wondering if there is a way to iterate all the vertices and query the UV coordinates related to that vertex.&lt;/P&gt;&lt;P&gt;I started getting into bifrost&amp;nbsp; a couple of days ago so I do not even know if using an iterator is going to slow down the graph and I do not even know if there is a way to get some sort of conversion of the vertex component to UV.&lt;BR /&gt;Thanks for the video. At first glance it seems like he is doing the same thing I was doing following your example.&lt;BR /&gt;I will watch it again more carefully.&lt;BR /&gt;&amp;nbsp;I have attached a scene with the meshes. I think the compound would work if the ids on the UV mesh were organized in the same way of the ids. I have the feeling there is an easy solution to this I just can't figure it out...&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Thank you for the help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 07:48:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/converting-uv-to-position/m-p/9917185#M5875</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-12-05T07:48:51Z</dc:date>
    </item>
  </channel>
</rss>

