<?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: Why can not find the u3dUnfold command in the documentation? in Maya Programming Forum</title>
    <link>https://forums.autodesk.com/t5/maya-programming-forum/why-can-not-find-the-u3dunfold-command-in-the-documentation/m-p/7229599#M11615</link>
    <description>&lt;P&gt;Most likely you can't find documentation for the "u3dUnfold" command because it is from a plug-in.&amp;nbsp; Specifically, it is from the "Unfold3D.mll" plugin.&amp;nbsp; In most cases, commands defined in plug-ins won't be found in the Maya documentation.&amp;nbsp; Even if the plug-in comes built-in to Maya.&amp;nbsp; You can get a bit of information by executing the following MEL command "help u3dUnfold;".&amp;nbsp; The results are as follows:&lt;/P&gt;
&lt;PRE&gt;help u3dUnfold;
// Result: 

Synopsis: u3dUnfold [flags] [String...]
Flags:
  -bi -borderintersection  on|off
 -ite -iterations          Int
  -ms -mapsize             Int
   -p -pack                on|off
  -rs -roomspace           Int
  -tf -triangleflip        on|off


Command Type: Command
 // 
&lt;/PRE&gt;
&lt;P&gt;This at least says what flags are available.&amp;nbsp; But there are no details about what each flag does.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other two things you mentioned, "DoCreatePointOnPolyConstraintArgList" and "PerformPolyProjectionArgList", don't have documentation because they are not commands.&amp;nbsp; They are MEL scripts.&amp;nbsp; You can find this by running the "whatIs" command:&lt;/P&gt;
&lt;PRE&gt;whatIs DoCreatePointOnPolyConstraintArgList;
// Result: Script found in: C:/Program Files/Autodesk/Maya2017/scripts/others/doCreatePointOnPolyConstraintArgList.mel // &lt;/PRE&gt;
&lt;P&gt;and:&lt;/P&gt;
&lt;PRE&gt;whatIs PerformPolyProjectionArgList;
// Result: Script found in: C:/Program Files/Autodesk/Maya2017/scripts/others/performPolyProjectionArgList.mel // &amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;You can open the MEL files to read what each function is doing.&amp;nbsp; But do not edit the files!&amp;nbsp; That can break things!&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2017 21:26:41 GMT</pubDate>
    <dc:creator>RFlannery1</dc:creator>
    <dc:date>2017-07-14T21:26:41Z</dc:date>
    <item>
      <title>Why can not find the u3dUnfold command in the documentation?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/why-can-not-find-the-u3dunfold-command-in-the-documentation/m-p/7228024#M11614</link>
      <description>&lt;P&gt;Why can not find the u3dUnfold command in the documentation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and these command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DoCreatePointOnPolyConstraintArgList&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PerformPolyProjectionArgList&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 10:08:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/why-can-not-find-the-u3dunfold-command-in-the-documentation/m-p/7228024#M11614</guid>
      <dc:creator>g2m.agent</dc:creator>
      <dc:date>2017-07-14T10:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why can not find the u3dUnfold command in the documentation?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/why-can-not-find-the-u3dunfold-command-in-the-documentation/m-p/7229599#M11615</link>
      <description>&lt;P&gt;Most likely you can't find documentation for the "u3dUnfold" command because it is from a plug-in.&amp;nbsp; Specifically, it is from the "Unfold3D.mll" plugin.&amp;nbsp; In most cases, commands defined in plug-ins won't be found in the Maya documentation.&amp;nbsp; Even if the plug-in comes built-in to Maya.&amp;nbsp; You can get a bit of information by executing the following MEL command "help u3dUnfold;".&amp;nbsp; The results are as follows:&lt;/P&gt;
&lt;PRE&gt;help u3dUnfold;
// Result: 

Synopsis: u3dUnfold [flags] [String...]
Flags:
  -bi -borderintersection  on|off
 -ite -iterations          Int
  -ms -mapsize             Int
   -p -pack                on|off
  -rs -roomspace           Int
  -tf -triangleflip        on|off


Command Type: Command
 // 
&lt;/PRE&gt;
&lt;P&gt;This at least says what flags are available.&amp;nbsp; But there are no details about what each flag does.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other two things you mentioned, "DoCreatePointOnPolyConstraintArgList" and "PerformPolyProjectionArgList", don't have documentation because they are not commands.&amp;nbsp; They are MEL scripts.&amp;nbsp; You can find this by running the "whatIs" command:&lt;/P&gt;
&lt;PRE&gt;whatIs DoCreatePointOnPolyConstraintArgList;
// Result: Script found in: C:/Program Files/Autodesk/Maya2017/scripts/others/doCreatePointOnPolyConstraintArgList.mel // &lt;/PRE&gt;
&lt;P&gt;and:&lt;/P&gt;
&lt;PRE&gt;whatIs PerformPolyProjectionArgList;
// Result: Script found in: C:/Program Files/Autodesk/Maya2017/scripts/others/performPolyProjectionArgList.mel // &amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;You can open the MEL files to read what each function is doing.&amp;nbsp; But do not edit the files!&amp;nbsp; That can break things!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 21:26:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/why-can-not-find-the-u3dunfold-command-in-the-documentation/m-p/7229599#M11615</guid>
      <dc:creator>RFlannery1</dc:creator>
      <dc:date>2017-07-14T21:26:41Z</dc:date>
    </item>
  </channel>
</rss>

