<?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: engraving with medial axis pattern sometimes misses squares. in PowerMill Forum</title>
    <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701815#M1947</link>
    <description>&lt;P&gt;Thanks, I'll look into this. Using the single line font works, but I have to tweak it nearly every time. Any font suggestions?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2024 13:10:41 GMT</pubDate>
    <dc:creator>stdpattern</dc:creator>
    <dc:date>2024-04-11T13:10:41Z</dc:date>
    <item>
      <title>engraving with medial axis pattern sometimes misses squares.</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12700168#M1944</link>
      <description>&lt;P&gt;I have a macro written that uses a medial axis pattern to engrave parts automatically, but shapes such as periods that are squares will be removed about 50% of the time. Iv talked to our design department and got them to stretch their engraving text a bit to hopefully make all squares into rectangles but id still like to make my macro a bit more robust or at-least detect when it removes some of the engraving (maybe check if the tool path goes inside a boundary or something along those lines). Here is the code I use on a pattern that was inserted from the model based on a color selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;EDIT PATTERN # CURVEEDITOR START
CURVEEDITOR SELECT ALL
CURVEEDITOR MODE OFFSET
MODE TRANSFORM OFFSET DISTANCE ".0001"
CURVEEDITOR FINISH ACCEPT
FORM MEDIALAXIS
EDIT PATTERN MEDIALAXIS ANGLE  "155"
EDIT PATTERN MEDIALAXIS CLEARANCE  "0"
EDIT PATTERN ; MEDIALAXIS APPLY
FORM ACCEPT MEDIALAXIS&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Autodesk PowerMill Ultimate 2023    [   None ]    _2024-04-10_13-44-20.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1348235iC7E789218CE0097A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Autodesk PowerMill Ultimate 2023    [   None ]    _2024-04-10_13-44-20.png" alt="Autodesk PowerMill Ultimate 2023    [   None ]    _2024-04-10_13-44-20.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 18:47:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12700168#M1944</guid>
      <dc:creator>bfaberBB7MX</dc:creator>
      <dc:date>2024-04-10T18:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: engraving with medial axis pattern sometimes misses squares.</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701531#M1945</link>
      <description>&lt;P&gt;I can't help with your issue, sorry. Your engraving method sounds interesting though. I have always used a stick font and created patterns from that for engraving. Delcam Sans Serif is my go to font.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you point me to how your method works?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 10:44:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701531#M1945</guid>
      <dc:creator>stdpattern</dc:creator>
      <dc:date>2024-04-11T10:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: engraving with medial axis pattern sometimes misses squares.</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701590#M1946</link>
      <description>&lt;P&gt;sure, my macro is pretty tuned to how we process parts but I can give you the backbone to how it works. You'll have to start with having your engraving color coded. I then create a pattern and insert all surfaces with that particular color&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bfaberBB7MX_0-1712833767350.png" style="width: 338px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1348455iAF0F60D9DE6A8529/image-dimensions/338x276?v=v2" width="338" height="276" role="button" title="bfaberBB7MX_0-1712833767350.png" alt="bfaberBB7MX_0-1712833767350.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This gives you an outline of the engraving. You can then use this code to "shrink down" the lettering into a single line.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;EDIT PATTERN # CURVEEDITOR START
CURVEEDITOR SELECT ALL
CURVEEDITOR MODE OFFSET
MODE TRANSFORM OFFSET DISTANCE ".0001" //this will automatically fix the direction of curves to work with the medial axis command
CURVEEDITOR FINISH ACCEPT
FORM MEDIALAXIS
EDIT PATTERN MEDIALAXIS ANGLE  "155"
EDIT PATTERN MEDIALAXIS CLEARANCE  "0"
EDIT PATTERN ; MEDIALAXIS APPLY
FORM ACCEPT MEDIALAXIS&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bfaberBB7MX_1-1712833913260.png" style="width: 361px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1348456iA64D268B93B47C7E/image-dimensions/361x268?v=v2" width="361" height="268" role="button" title="bfaberBB7MX_1-1712833913260.png" alt="bfaberBB7MX_1-1712833913260.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bfaberBB7MX_2-1712833944596.png" style="width: 232px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1348457iC2FC8610D9C182CC/image-dimensions/232x253?v=v2" width="232" height="253" role="button" title="bfaberBB7MX_2-1712833944596.png" alt="bfaberBB7MX_2-1712833944596.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;From there you can use a pattern finishing tool path to create the engraving.&amp;nbsp; You might need to play with the axial offset and thickness to get the tool path flat.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 11:23:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701590#M1946</guid>
      <dc:creator>bfaberBB7MX</dc:creator>
      <dc:date>2024-04-11T11:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: engraving with medial axis pattern sometimes misses squares.</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701815#M1947</link>
      <description>&lt;P&gt;Thanks, I'll look into this. Using the single line font works, but I have to tweak it nearly every time. Any font suggestions?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 13:10:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701815#M1947</guid>
      <dc:creator>stdpattern</dc:creator>
      <dc:date>2024-04-11T13:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: engraving with medial axis pattern sometimes misses squares.</title>
      <link>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701830#M1948</link>
      <description>&lt;P&gt;Theoretically any font will work but like with my original post any perfectly square or round characters are like a 50/50 chance they are missed.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 13:14:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powermill-forum/engraving-with-medial-axis-pattern-sometimes-misses-squares/m-p/12701830#M1948</guid>
      <dc:creator>bfaberBB7MX</dc:creator>
      <dc:date>2024-04-11T13:14:08Z</dc:date>
    </item>
  </channel>
</rss>

