<?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: Trouble with Dist script in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071467#M24677</link>
    <description>Hey Clay,&lt;BR /&gt;&lt;BR /&gt;It looks like that script uses an installer, so I don't think it's very easy to troubleshoot.&lt;BR /&gt;&lt;BR /&gt;If you need the distance between two points though, you can either use an ExposeTM helper or the &amp;lt;b&amp;gt;distance&amp;lt;/b&amp;gt; method. I'm not sure about the length of an edge, but if you can get the co-ordinates of the two points that define the edge you can use vector subtraction and the &amp;lt;b&amp;gt;length&amp;lt;/b&amp;gt; method.&lt;BR /&gt;Both &amp;lt;b&amp;gt;distance&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;length&amp;lt;/b&amp;gt; are documented under&lt;BR /&gt;Value &amp;gt; Basic Data Values &amp;gt; Point2 Values&lt;BR /&gt;in the maxScript reference.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Kenji</description>
    <pubDate>Tue, 31 Mar 2009 05:22:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-03-31T05:22:04Z</dc:date>
    <item>
      <title>Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071466#M24676</link>
      <description>I found a tool that we need in order to build certain types of models at our workplace, it is called Dist. &lt;BR /&gt;&lt;BR /&gt;URL - &lt;A href="http://www.scriptspot.com/3ds-max/dist" target="_blank"&gt;http://www.scriptspot.com/3ds-max/dist&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I cannot get it to work inside 3ds max 2009. I know this is an old script so could there be a problem with versions as this script was written for max 6 or am I just doing something wrong?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Clay</description>
      <pubDate>Mon, 30 Mar 2009 23:21:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071466#M24676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-30T23:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071467#M24677</link>
      <description>Hey Clay,&lt;BR /&gt;&lt;BR /&gt;It looks like that script uses an installer, so I don't think it's very easy to troubleshoot.&lt;BR /&gt;&lt;BR /&gt;If you need the distance between two points though, you can either use an ExposeTM helper or the &amp;lt;b&amp;gt;distance&amp;lt;/b&amp;gt; method. I'm not sure about the length of an edge, but if you can get the co-ordinates of the two points that define the edge you can use vector subtraction and the &amp;lt;b&amp;gt;length&amp;lt;/b&amp;gt; method.&lt;BR /&gt;Both &amp;lt;b&amp;gt;distance&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;length&amp;lt;/b&amp;gt; are documented under&lt;BR /&gt;Value &amp;gt; Basic Data Values &amp;gt; Point2 Values&lt;BR /&gt;in the maxScript reference.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Kenji</description>
      <pubDate>Tue, 31 Mar 2009 05:22:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071467#M24677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-31T05:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071468#M24678</link>
      <description>I am not familier with the ExposeTM helper but I looked at it and it seems like you have to set it up every time you use it. &lt;BR /&gt;&lt;BR /&gt;That tool is exactly what I need, the ability to quickly measure the distance between 2 points or the length of an edge. We are building 50 - 100 thousand poly models that cannot have a polygon with more than 150 units (mm). You could imagine if while building the model you had to stop constantly to set up a tool just to measure a few faces.&lt;BR /&gt;&lt;BR /&gt;Does that script work with Max 2009? I have not used many scripts and I am probably messing something up. &lt;BR /&gt;&lt;BR /&gt;Oh yes, I probably need to tell you that I have been using max for only 2 months now.</description>
      <pubDate>Tue, 31 Mar 2009 21:06:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071468#M24678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-31T21:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071469#M24679</link>
      <description>What you need to do instead is use a distance function and pass it two point three values.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;distance  &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Claycw wrote:&lt;BR /&gt;&amp;gt; I am not familier with the ExposeTM helper but I looked at it and it seems like you have to set it up every time you use it.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; That tool is exactly what I need, the ability to quickly measure the distance between 2 points or the length of an edge. We are building 50 - 100 thousand poly models that cannot have a polygon with more than 150 units (mm). You could imagine if while building the model you had to stop constantly to set up a tool just to measure a few faces.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; Does that script work with Max 2009? I have not used many scripts and I am probably messing something up.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; Oh yes, I probably need to tell you that I have been using max for only 2 months now.</description>
      <pubDate>Wed, 01 Apr 2009 03:50:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071469#M24679</guid>
      <dc:creator>paulneale</dc:creator>
      <dc:date>2009-04-01T03:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071470#M24680</link>
      <description>Are you talking about writing a script? I am new to the software and have no experince in programing. On top of that we are very pushed for time at the moment.&lt;BR /&gt;&lt;BR /&gt;How hard would it be to write a script that displayed distance of edge lenths and point to point in the Statistics readout? This would be the ideal fix for the work that we are trying to use the software for. It really is a case of having to know the size of what we are working on down to the edge lengths at all times without having to set up a tool every time we move away from the area we were working on.</description>
      <pubDate>Wed, 01 Apr 2009 22:18:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071470#M24680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-01T22:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071471#M24681</link>
      <description>Well if you are new to it then using the ExTm helper is probably the best way to go for you. Sounds&lt;BR /&gt;like you are in need of a company to do scripting for you;)&lt;BR /&gt;&lt;BR /&gt;Claycw wrote:&lt;BR /&gt;&amp;gt; Are you talking about writing a script? I am new to the software and have no experince in programing. On top of that we are very pushed for time at the moment.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; How hard would it be to write a script that displayed distance of edge lenths and point to point in the Statistics readout? This would be the ideal fix for the work that we are trying to use the software for. It really is a case of having to know the size of what we are working on down to the edge lengths at all times without having to set up a tool every time we move away from the area we were working on.</description>
      <pubDate>Thu, 02 Apr 2009 05:34:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071471#M24681</guid>
      <dc:creator>paulneale</dc:creator>
      <dc:date>2009-04-02T05:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071472#M24682</link>
      <description>This maybe useful for you.  Just run the script and when your in editpoly at the vertex level select 2 verts and push the button.  So you can just leave the floater up while u work and just click a button over &amp;amp; over.&lt;BR /&gt;&lt;BR /&gt;I didn't see any access to viewport statistic which would be great if you could customize that in max for getting extra info displayed.&lt;BR /&gt;&lt;BR /&gt;hope this is helpful&lt;P&gt;&lt;A class="migr-att-link" href="http://area.autodesk.com/userdata/forum/1/17870_9ztsSQgZ2IYch8ppp1x4.zip" target="_blank"&gt;17870_9ztsSQgZ2IYch8ppp1x4.zip&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2009 09:09:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071472#M24682</guid>
      <dc:creator>joegunn3d</dc:creator>
      <dc:date>2009-04-02T09:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071473#M24683</link>
      <description>Thanks, this works great.</description>
      <pubDate>Thu, 02 Apr 2009 20:11:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071473#M24683</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-02T20:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with Dist script</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071474#M24684</link>
      <description>NP Claycw</description>
      <pubDate>Fri, 03 Apr 2009 00:07:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/trouble-with-dist-script/m-p/4071474#M24684</guid>
      <dc:creator>joegunn3d</dc:creator>
      <dc:date>2009-04-03T00:07:24Z</dc:date>
    </item>
  </channel>
</rss>

