<?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 How to calculate the area of a face in UV in Maya Programming Forum</title>
    <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10489942#M3889</link>
    <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/maya-programming/how-to-return-to-uv-after-selecting-the-face/td-p/10484233" target="_blank"&gt;Solved: How to return to UV after selecting the face. - Autodesk Community - Maya&lt;/A&gt;&lt;/P&gt;&lt;P&gt;here raise the new problem!&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I selected a face, and this face is composed of 4 vertices, 0, 1, 2, and 3.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Then I went to get the coordinates of these 4 vertices from the UV, which can also be obtained. Unfortunately, the original model is a quadrilateral surrounded by 0, 2, 3, and 1 in order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The resulting list of UV coordinates is in the order of 0, 1, 2, 3, so I got the wrong value when calculating the area.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;cmds.select(cmds.polyListComponentConversion(tuv = True))
lUVCoordinate = cmds.polyEditUV(query = True, relative=False)
print lUVCoordinate&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;So is there a better way to get the UV area or get these points in order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The Helen formula I used to calculate the area. Also, if they are all triangles, there is no such problem. However, the model has triangular and quadrilateral faces. If the length of the side is wrong and the diagonal is taken, the calculation will be wrong.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jul 2021 07:07:10 GMT</pubDate>
    <dc:creator>243202504</dc:creator>
    <dc:date>2021-07-23T07:07:10Z</dc:date>
    <item>
      <title>How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10489942#M3889</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/maya-programming/how-to-return-to-uv-after-selecting-the-face/td-p/10484233" target="_blank"&gt;Solved: How to return to UV after selecting the face. - Autodesk Community - Maya&lt;/A&gt;&lt;/P&gt;&lt;P&gt;here raise the new problem!&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I selected a face, and this face is composed of 4 vertices, 0, 1, 2, and 3.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Then I went to get the coordinates of these 4 vertices from the UV, which can also be obtained. Unfortunately, the original model is a quadrilateral surrounded by 0, 2, 3, and 1 in order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The resulting list of UV coordinates is in the order of 0, 1, 2, 3, so I got the wrong value when calculating the area.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;cmds.select(cmds.polyListComponentConversion(tuv = True))
lUVCoordinate = cmds.polyEditUV(query = True, relative=False)
print lUVCoordinate&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;So is there a better way to get the UV area or get these points in order.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The Helen formula I used to calculate the area. Also, if they are all triangles, there is no such problem. However, the model has triangular and quadrilateral faces. If the length of the side is wrong and the diagonal is taken, the calculation will be wrong.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jul 2021 07:07:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10489942#M3889</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-23T07:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10490083#M3890</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I tried to loop the sides of the face after selecting the face so that the diagonal line is not selected. This method can solve the problem, but it is very troublesome.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jul 2021 08:07:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10490083#M3890</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-23T08:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10493683#M3891</link>
      <description>&lt;P&gt;Why not triangulate your model first?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jul 2021 23:33:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10493683#M3891</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2021-07-24T23:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495339#M3892</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The model was not made by me, and I don't know how to convert it into a triangle.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 02:13:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495339#M3892</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-26T02:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495514#M3893</link>
      <description>&lt;P&gt;polyTriangulate.&amp;nbsp; You can give it specific faces.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 05:04:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495514#M3893</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2021-07-26T05:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495804#M3894</link>
      <description>&lt;P&gt;aha,&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;This command does make it more convenient for me to calculate the area, but I don't have the permission to change the model.I can only calculate the area of each surface UV when the triangles and quadrilaterals exist at the same time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 08:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10495804#M3894</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-26T08:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10496946#M3895</link>
      <description>&lt;P&gt;Try duplicating the mesh.&amp;nbsp; Use the duplicate to do any alterations to facilitate getting what you want.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 15:56:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10496946#M3895</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2021-07-26T15:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498112#M3896</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;This is a method, but it is not what I want. I have tried to convert the model to a triangle. The number of cycles required to traverse the loop has doubled. It can't help me to write this method at the beginning to speed up, because although the speed&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;It's very fast, but the increase in the number of loops causes the actual running time of the code to not change much.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 02:16:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498112#M3896</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-27T02:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498115#M3897</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I currently think that if I can find the api corresponding to MAYA-Python or use the shader, it should be solved, but I can't find the relevant information.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I temporarily used Python's powerful data processing functions to complete the code.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 02:19:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498115#M3897</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-27T02:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498125#M3898</link>
      <description>&lt;P&gt;Sorry I don't quite understand your reply.&amp;nbsp; It sounds like you said the script is reasonably fast and the increase in the number of loops hasn't impacted the running time of the script.&amp;nbsp; So I'm not sure what the problem is.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if I made it clear that you don't have to triangulate the entire model.&amp;nbsp; You can just triangulate the quads that you want to query.&amp;nbsp; This might speed things up a bit.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 02:23:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498125#M3898</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2021-07-27T02:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498261#M3899</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;At the beginning, I made a script to query the accuracy of each facet of the model and put different colors on it.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Because of the query accuracy, mel is called, so it is very slow.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;density = mel.eval('texGetTexelDensity(%i)' % map_size)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I found that 80% of the code time was spent on this line.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I want to speed up, so I implement the method to get the model pixel accuracy by myself.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;When writing the code to calculate the pixel accuracy, I encountered many problems. One of them is that when calculating the four sides, after the four points of the UV are taken, the program does not know how to form a quadrilateral, and the side lengths obtained are not correct, resulting in some sides.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Calculating the UV area will be wrong.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;But this error is completely random.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;I solved this problem through Python, constructing List and other methods, and finally completed this function without an error, but the code is very long, so I come to ask for help, is there any command that allows me to get the four sides directly or very quickly&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;UV area.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Converting four-sided faces to triangular faces is a way to avoid errors in area calculation. However, a model equivalent to 10,000 faces originally only needs to calculate 10,000 cycles, but now it needs 20,000 cycles. For what you said, it is not necessary to perform quadrilateral to triangle operation on every face. Because I don’t know which quadrilateral the problem will occur, sometimes I don’t report an error, but in fact, because the side length is wrong, the calculation accuracy is wrong. I have to calculate every face, so I loop like this The frequency will double. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Thank you for your answer. I have gained more knowledge, that is, you can use cmds.polyTriangulate() to turn a quadrilateral into a triangle, but my ultimate goal is to make my code run faster and the data obtained is okay, so this is not what I want . &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 03:51:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498261#M3899</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-27T03:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498308#M3900</link>
      <description>&lt;P&gt;I didn't test the following.&amp;nbsp; I just typed it out here.&amp;nbsp; But I believe the logic is sound.&amp;nbsp; I gathered from your reply that the issue is sorting the edges/sides of a face so that you can be guaranteed of getting the correct result from your area calculation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;string $face = "mesh.f[0]";&lt;/P&gt;&lt;P&gt;string $edges[] = ls("-flatten", `polyListComponentConversion -ff -te $face`);&lt;/P&gt;&lt;P&gt;string $orderedEdges[];&lt;/P&gt;&lt;P&gt;//&amp;nbsp; ARBITRARY STARTING EDGE&lt;/P&gt;&lt;P&gt;$orderedEdges[0] = $edges[0];&lt;/P&gt;&lt;P&gt;//&amp;nbsp; LOOP THROUGH REMAINING EDGES TO GET ORDER&lt;/P&gt;&lt;P&gt;string $pts[] =&amp;nbsp;ls("-flatten", `polyListComponentConversion -fe -tv $orderedEdges[size($orderedEdges)]`);&lt;/P&gt;&lt;P&gt;//&amp;nbsp; REMOVE STARTING EDGE FROM EDGES&lt;/P&gt;&lt;P&gt;$edges = stringArrayRemove($orderedEdges, $edges);&lt;/P&gt;&lt;P&gt;while(size($edges))&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; //&amp;nbsp; LOOP THROUGH REMAINING EDGES TO FIND NEXT EDGE&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; for($edge in $edges)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//&amp;nbsp; CONVERT EDGE TO VERTS TO MATCH LAST VERTEX&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string $pts1[] =&amp;nbsp;ls("-flatten", `polyListComponentConversion -fe -tv $edge`);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp; IF REMOVING THE LAST VERTEX FROM PTS LIST FROM PTS1 RESULTS IN ONLY 1 VERTEX,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp; THEN NEXT EDGE FOUND&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(size(stringArrayRemove({$pts[size($pts)-1]}, $pts1))==1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp; UPDATE ORDERED EDGES&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $orderedEdges[size($orderedEdges)] = $edge;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp; UPDATE EDGES&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $edges = stringArrayRemove($orderedEdges, $edges);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp; UPDATE PTS LIST&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $pts = stringArrayRemoveDuplicates(stringArrayCatenate($pts, $pts1));&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//&amp;nbsp; EDGES IN ORDER&lt;/P&gt;&lt;P&gt;print $orderedEdges;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 04:21:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498308#M3900</guid>
      <dc:creator>mcw0</dc:creator>
      <dc:date>2021-07-27T04:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the area of a face in UV</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498533#M3901</link>
      <description>&lt;P&gt;I don't use Mel, but I translated it. The method you use is what I am using now. After selecting the four vertices, get the coordinates, and then select the edges to get the coordinates. After the comparison, remove the extra point coordinates.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sorry, my native language is not English, I use Google Translate to communicate with you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 06:50:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/how-to-calculate-the-area-of-a-face-in-uv/m-p/10498533#M3901</guid>
      <dc:creator>243202504</dc:creator>
      <dc:date>2021-07-27T06:50:49Z</dc:date>
    </item>
  </channel>
</rss>

