<?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: Intent function : Transformpoint in Inventor Engineer-To-Order (Read-Only)</title>
    <link>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3632332#M1969</link>
    <description>&lt;P&gt;Thanks Jon and Jack.&lt;/P&gt;&lt;P&gt;Both solutions helped me out !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers, Mark&lt;/P&gt;</description>
    <pubDate>Tue, 25 Sep 2012 06:36:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-09-25T06:36:56Z</dc:date>
    <item>
      <title>Intent function : Transformpoint</title>
      <link>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3629022#M1964</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a point p1 defined in frame1 and I want to know what its X,Y and Z values are in frame 2. I thought, according the documentation &lt;A target="_self" href="http://wikihelp.autodesk.com/Inventor_ETO/enu/2013/Help/0148-Inventor148/0525-Library_525/0870-System_L870/0908-Function908/0909-System909/0926-Frame926/0936-transfor936"&gt;http://wikihelp.autodesk.com/Inventor_ETO/enu/2013/Help/0148-Inventor148/0525-Library_525/0870-System_L870/0908-Function908/0909-System909/0926-Frame926/0936-transfor936&lt;/A&gt;, I could use the function Transformpoint. When I try this, Intent returns a point in worldframe instead of a point in frame2 coordinates. When I check these returned coordinates then they point towards another point in space but not my original point p1. Am I missing something ,or Am I doing something wrong. If so, what function should I use ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2012 12:38:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3629022#M1964</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-21T12:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Intent function : Transformpoint</title>
      <link>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3631758#M1967</link>
      <description>&lt;P&gt;I think you want "invertFrame" or perhaps "relateFrame". &amp;nbsp;Look at the following rules, and their values:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;	Rule otherFrame As Frame = TranslateFrame(localFrame, Vector(1,1,1))
		
	Rule otherPoint As Point = point_(0,0,0,otherFrame)
		
	Rule originInOtherFrame As Point = transformPoint(origin, otherFrame)
		
	Rule otherPointInMyFrame As Point = transformPoint(otherPoint, localFrame)
		
	Rule otherPointInOtherFrame1 As Point = transformPoint(otherPoint, invertFrame(otherFrame))
		
	Rule otherPointInOtherFrame2 As Point = transformPoint(otherPoint, relateFrame(otherFrame, localFrame))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2012 18:50:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3631758#M1967</guid>
      <dc:creator>Jon.Balgley</dc:creator>
      <dc:date>2012-09-24T18:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Intent function : Transformpoint</title>
      <link>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3631764#M1968</link>
      <description>&lt;P&gt;The basic answer is simple.&amp;nbsp; "&lt;EM&gt;I have a point p1 defined in frame1 and I want to know what its X,Y and Z values are in frame 2.&lt;/EM&gt;"&amp;nbsp; Just call LocalX(p1) &lt;U&gt;in the context of&lt;/U&gt; frame 2.&amp;nbsp; And LocalY, LocalZ, of course.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I have answered this enough times in the last 20 years to think that maybe that isn't what you really want, though I hope it is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to be very careful when you say "Intent returns a point in ..."&amp;nbsp; Intent doesn't really return things in the normal sense.&amp;nbsp; It knows the world coordinates of every point, and in theory handles all transformations for you.&amp;nbsp; Don't be misled by coordinates displayed in various windows; points should be treated as coordinate-free.&amp;nbsp; As a result, the ONLY time you really need LocalX and friends is when you are &lt;STRONG&gt;exporting&lt;/STRONG&gt; data.&amp;nbsp; If you are playing with X Y and Z components in rules, for feeding to other rules, you are almost certainly doing the Wrong Thing (tm).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2012 18:54:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3631764#M1968</guid>
      <dc:creator>JackGregory</dc:creator>
      <dc:date>2012-09-24T18:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Intent function : Transformpoint</title>
      <link>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3632332#M1969</link>
      <description>&lt;P&gt;Thanks Jon and Jack.&lt;/P&gt;&lt;P&gt;Both solutions helped me out !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers, Mark&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2012 06:36:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-engineer-to-order-read/intent-function-transformpoint/m-p/3632332#M1969</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-25T06:36:56Z</dc:date>
    </item>
  </channel>
</rss>

