<?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: script to Query for number of reversed and Overlapping UVs in Maya Programming Forum</title>
    <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421755#M4066</link>
    <description>&lt;P&gt;I tried to create a quick test of the Backfacing UV counter.&lt;BR /&gt;&lt;BR /&gt;I might be missing something simple here but is there a reason this would not work. My array appears empty even though I purposely created bad UVs. The bad UVs are displayed after the command but not captured in my array.&lt;BR /&gt;&lt;BR /&gt;SelectUVMask;&lt;BR /&gt;string $backFaceing[];&lt;BR /&gt;$backFaceing = `SelectUVBackFacingComponents`;&lt;BR /&gt;$strSize=size($backFaceing);&lt;BR /&gt;print $strSize;&lt;BR /&gt;clear $backFaceing;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$strSize returns 0&lt;/P&gt;</description>
    <pubDate>Sat, 26 Jun 2021 01:03:56 GMT</pubDate>
    <dc:creator>RichSuchy</dc:creator>
    <dc:date>2021-06-26T01:03:56Z</dc:date>
    <item>
      <title>script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10419159#M4063</link>
      <description>&lt;P&gt;Is there a queryable command that returns the number of overlapping and reversed UV's an object has. I want to write a check in script that parses a selection of models and prints a report about the selected models. Found two python scripts online but neither have propper syntax and don't do what I am looking to do.. The UV editor hud shows this information in the lower right corner so it seems it would be simple. Looking through the mel commands I came up dry.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 02:20:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10419159#M4063</guid>
      <dc:creator>RichSuchy</dc:creator>
      <dc:date>2021-06-25T02:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421596#M4064</link>
      <description>&lt;P&gt;For backfacing select your object in object mode&lt;/P&gt;&lt;P&gt;SelectUVMask;&lt;BR /&gt;SelectUVBackFacingComponents;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For overlapping&lt;/P&gt;&lt;P&gt;SelectFacetMask;&lt;BR /&gt;selectUVOverlappingComponents 1 0;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 22:37:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421596#M4064</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-06-25T22:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421687#M4065</link>
      <description>Thank you so much!</description>
      <pubDate>Fri, 25 Jun 2021 23:53:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421687#M4065</guid>
      <dc:creator>RichSuchy</dc:creator>
      <dc:date>2021-06-25T23:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421755#M4066</link>
      <description>&lt;P&gt;I tried to create a quick test of the Backfacing UV counter.&lt;BR /&gt;&lt;BR /&gt;I might be missing something simple here but is there a reason this would not work. My array appears empty even though I purposely created bad UVs. The bad UVs are displayed after the command but not captured in my array.&lt;BR /&gt;&lt;BR /&gt;SelectUVMask;&lt;BR /&gt;string $backFaceing[];&lt;BR /&gt;$backFaceing = `SelectUVBackFacingComponents`;&lt;BR /&gt;$strSize=size($backFaceing);&lt;BR /&gt;print $strSize;&lt;BR /&gt;clear $backFaceing;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$strSize returns 0&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jun 2021 01:03:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10421755#M4066</guid>
      <dc:creator>RichSuchy</dc:creator>
      <dc:date>2021-06-26T01:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422731#M4067</link>
      <description>&lt;P&gt;It looks like defining the selection can't be done at the same time as creating the variable, you can do it like this to get the result you're after.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SelectUVMask;&lt;BR /&gt;SelectUVBackFacingComponents;&lt;BR /&gt;string $backFaceing[] = `ls -sl -fl`;&lt;BR /&gt;$strSize = size($backFaceing);&lt;BR /&gt;print $strSize;&lt;BR /&gt;clear $backFaceing;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jun 2021 16:04:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422731#M4067</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-06-26T16:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422744#M4068</link>
      <description>&lt;P&gt;I wish these commands had some documentation. Thanks a bunch, That is indeed a solution (slapping forehead for missing the obvious)&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jun 2021 16:13:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422744#M4068</guid>
      <dc:creator>RichSuchy</dc:creator>
      <dc:date>2021-06-26T16:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: script to Query for number of reversed and Overlapping UVs</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422746#M4069</link>
      <description>&lt;P&gt;Yeah it would be nice if the mel reference had been updated in the last 10 years, it seems really out of date.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jun 2021 16:13:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/script-to-query-for-number-of-reversed-and-overlapping-uvs/m-p/10422746#M4069</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-06-26T16:13:41Z</dc:date>
    </item>
  </channel>
</rss>

