<?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: G-Post FIL Help in Manufacturing (CAM)</title>
    <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302095#M261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jason was referring to clearance moves around the part-machine volume. Using the strategy mentioned above, Creo will create a minimum number of points to move to and remain clear of the established&amp;nbsp; zone. Example, for a 90deg A rotation, 2-3 intermediate seemed to be typical.&amp;nbsp; Does the Tool Axis Vector Setting affect this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Oct 2016 21:35:42 GMT</pubDate>
    <dc:creator>joshuataylor</dc:creator>
    <dc:date>2016-10-12T21:35:42Z</dc:date>
    <item>
      <title>G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302086#M252</link>
      <description>After many years of dealing with minor edits to my G-Code, I am trying to put some final touches on my Posts. Does anyone have any ideas on how to get the posts to for out both the X and Y moves after it calls out the Work Offset? We have had issues with changing work offsets but</description>
      <pubDate>Sun, 13 Dec 2020 18:37:49 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302086#M252</guid>
      <dc:creator>JasonPensack</dc:creator>
      <dc:date>2020-12-13T18:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302087#M253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can catch an offset setting and process it to add other things via something like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$$&lt;/P&gt;&lt;P&gt;$$ This is my code to output the G54 to G59 that is valid for our machines.&lt;/P&gt;&lt;P&gt;$$&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CIMFIL/ ON, SET, OFSETL&lt;/P&gt;&lt;P&gt;&amp;nbsp; OFSTYP = POSTF ( 6, 5 )&lt;/P&gt;&lt;P&gt;&amp;nbsp; OFSREG = POSTF ( 7, 5 )&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF ( OFSTYP .EQ. 1 ) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF ( OFSREG.GE.54.AND.OFSREG.LE.59.AND.CURREG.NE.OFSREG ) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURREG = OFSREG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFSCMD = TEXT/ 'G', CONVI, OFSREG, 2, '$'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSERT/ OFSCMD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDIF&lt;/P&gt;&lt;P&gt;CIMFIL/ OFF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could add some other "INSRT/" statements to put, for example, a G00 motion. Unfortunately, I can't seem to find any POSTF register that keeps track of the current X, Y, and Z coordinates (plus B and C, I suppose if you're on a higher degree-of-freedom machine). But if, like me, you handle every "GOTO", you could have a variable that stores the last X, Y, and Z that were seen. So you could then use those stored values to write a G00 or G01 or whatever to the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could do something similar, I suppose, if there is a specific FIL code that is in the CL file to signal a rotation. I do something like this for tool changes (bring the machine home, orient the spindle, then get the tool and for safety, an optional stop, etc.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 17:24:33 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302087#M253</guid>
      <dc:creator>KenFarley</dc:creator>
      <dc:date>2016-09-30T17:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302088#M254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Insert a retract line as Kenneth advised then read ahead to get your next move values and create lines for the next move. We handle B values for indexing in the w/o register and a spherical clearance zone for 5axis. This is part of what I use for verticals and horizontals-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DMY=POSTF(15,0,1)&amp;nbsp; $$SAVE POINTER LOCATION AND SEE WHAT HAPPENS AFTER W/O CHANGE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DO/RAH2,RH2=1,10,1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RH2=1&amp;nbsp;&amp;nbsp; $$RESET LOOP VAR&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DMY=POSTF(14)&amp;nbsp; $$GET NEXT RECORD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TPSRCH=POSTF(7,2)&amp;nbsp; $$GET 2ND WORD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GTSRCH=POSTF(7,3)&amp;nbsp; $$GET 3RD WORD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (TPSRCH.EQ.14000.OR.GTSRCH.EQ.(ICODEF(LOADTL)))THEN&amp;nbsp;&amp;nbsp;&amp;nbsp; $$END LOOP AT FINI-LOADTL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RH2=11&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (TPSRCH.EQ.5000)THEN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $$VERIFY AND CREATE NEXT XYZ MOVES AND END LOOP&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XPOS=POSTF(7,6)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YPOS=POSTF(7,7)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZPOS=POSTF(7,8)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PREFUN/0,NEXT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $$MOVE TO NEXT X Y&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POSTN/OUT,X,XPOS,Y,YPOS&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REPEAT/Z,G,43 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REPEAT/Z,H,TLADJ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $$PICK UP TOOL L OFFSET - TLADJ IS SET AT LOADTL&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POSTN/OUT,Z,ZPOS&amp;nbsp;&amp;nbsp; $$MOVE TO NEXT Z&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RH2=11 &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RAH2)CONTIN &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DMY=POSTF(15,0,2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 21:25:29 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302088#M254</guid>
      <dc:creator>joshuataylor</dc:creator>
      <dc:date>2016-09-30T21:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302089#M255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ken / Josh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the information... I will try these methods as soon as I can!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 16:36:44 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302089#M255</guid>
      <dc:creator>JasonPensack</dc:creator>
      <dc:date>2016-10-03T16:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302090#M256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's some good looking FIL code Josh.&amp;nbsp; You must have been paying attention in the G-Post class.&amp;nbsp; &lt;IMG src="https://community.ptc.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 21:16:09 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302090#M256</guid>
      <dc:creator>AustinN.C.,Inc.</dc:creator>
      <dc:date>2016-10-05T21:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302091#M257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fred that's the nicest thing anyone has said to me all day!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 21:41:09 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302091#M257</guid>
      <dc:creator>joshuataylor</dc:creator>
      <dc:date>2016-10-05T21:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302092#M258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Josh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using the spherical clearance zone, how do you remove all of the unnecessary moves that it makes when indexing? I've tried playing with the Tolerance but I still get a couple of extra X,Y,A,&amp;amp;B moves mixed in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 17:00:39 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302092#M258</guid>
      <dc:creator>JasonPensack</dc:creator>
      <dc:date>2016-10-12T17:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302093#M259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haven't had a chance to figure that out yet (just starting to program for the 5-axis). But it eliminated over-travels and simulated well enough I was confident of not crashing - at the expense of extra and jerky movements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if there is a way to fix this in creo but if I come up with a post solution I will add it here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 20:13:30 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302093#M259</guid>
      <dc:creator>joshuataylor</dc:creator>
      <dc:date>2016-10-12T20:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302094#M260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can set the Tool Axis Vector Tolerance in the post Option File.&amp;nbsp; It is on the Machine Tool Type -&amp;gt; Types, Specs &amp;amp; Axes -&amp;gt; Specs tab in the lower right corner.&amp;nbsp; I would start with .0001 in the IJK Toolaxis Tolerance and see what that does for you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 20:29:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302094#M260</guid>
      <dc:creator>AustinN.C.,Inc.</dc:creator>
      <dc:date>2016-10-12T20:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302095#M261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jason was referring to clearance moves around the part-machine volume. Using the strategy mentioned above, Creo will create a minimum number of points to move to and remain clear of the established&amp;nbsp; zone. Example, for a 90deg A rotation, 2-3 intermediate seemed to be typical.&amp;nbsp; Does the Tool Axis Vector Setting affect this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 21:35:42 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302095#M261</guid>
      <dc:creator>joshuataylor</dc:creator>
      <dc:date>2016-10-12T21:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302096#M262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a sample where the part was faced at A0C0 and is indexing to A-90C0 :&lt;/P&gt;&lt;P&gt;N14G0Z14.4675&lt;/P&gt;&lt;P&gt;N15X6.6029Y-8.3624A-44.904&lt;/P&gt;&lt;P&gt;N16Z11.9361&lt;/P&gt;&lt;P&gt;N17X6.1271Y-13.5225A-89.904&lt;/P&gt;&lt;P&gt;N18Z5.9666&lt;/P&gt;&lt;P&gt;N19X6.125Y-13.5286A-90.&lt;/P&gt;&lt;P&gt;N20Z5.955&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So instead of a smooth transition around the part you get kind of a jerky movement, runs fine otherwise though. I am just getting familiar with this machine - variaxis - so it may just be reclamping or something else causing it.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 21:50:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302096#M262</guid>
      <dc:creator>joshuataylor</dc:creator>
      <dc:date>2016-10-12T21:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302097#M263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can eliminate unwanted jerky A-axis movements by setting value of the TOLERANCE (in Operation Clearance tab) to a very high value, e.g. to 2500.&lt;/P&gt;&lt;P&gt;This value (estimated) depends on the dimension of the cylindrical retract surface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, you can see only one tool transition movement, in toolpath simulation and subsequently in the NC program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rostislav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 09:24:41 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302097#M263</guid>
      <dc:creator>rlysy</dc:creator>
      <dc:date>2016-10-13T09:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302098#M264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rostislav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No matter how high I set the tolerance I still can not get rid of the last 2 intermediate motions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="107628" alt="Capture.PNG" class="jive-image image-1" height="339" src="https://community.ptc.com/legacyfs/online/107628_Capture.PNG" style="height: 339px; width: 494.541px;" width="495" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="107629" alt="Capture2.PNG" class="jive-image image-2" height="563" src="https://community.ptc.com/legacyfs/online/107629_Capture2.PNG" style="height: 563.2px; width: 496px;" width="496" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******* EDIT ......... I just noticed that you said cylinder in your comment so I tried it and it worked like you had said. The only issue for me is that I can control my B-Axis rotations using that but not my A-Axis or vice versa but not both at the same time. Why can't sphere work like cylinder in regards to the tolerance?!?!!? Just like everything else in CREO - hasn't changed since WildFire 2 *******&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 13:44:55 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302098#M264</guid>
      <dc:creator>JasonPensack</dc:creator>
      <dc:date>2016-10-13T13:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: G-Post FIL Help</title>
      <link>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302099#M265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The vector tolerance in the post would not affect move like this as they are fairly large.&amp;nbsp; It is meant to skip very small rotary moves. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 14:13:42 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Manufacturing-CAM/G-Post-FIL-Help/m-p/302099#M265</guid>
      <dc:creator>AustinN.C.,Inc.</dc:creator>
      <dc:date>2016-10-13T14:13:42Z</dc:date>
    </item>
  </channel>
</rss>

