<?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: Inventor 2016 enumerating outer edges in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653100#M56129</link>
    <description>&lt;P&gt;In that case you just have to remove the &lt;STRONG&gt;IsOuterEdgeLoop&lt;/STRONG&gt; check and can use directly the &lt;STRONG&gt;Edges&lt;/STRONG&gt; collection.&lt;/P&gt;
&lt;P&gt;So just had to modify this function:&lt;/P&gt;
&lt;PRE&gt;' Check all edges, but ignore common
' edges with other faces
Sub GetOuterEdgesOfFaces( _
faces As ObjectCollection, edges As ObjectCollection)
  Dim f As Face
  For Each f In faces
    Dim e As Edge
    For Each e In f.edges
      Dim f2 As Face
      For Each f2 In e.faces
        If (Not f Is f2) And _
           (Not IsInCollection(f2, faces)) And _
           (Not IsInCollection(e, edges)) Then
          Call edges.Add(e)
        End If
      Next
    Next
  Next
End Sub&lt;/PRE&gt;</description>
    <pubDate>Wed, 27 May 2015 10:43:36 GMT</pubDate>
    <dc:creator>adam.nagy</dc:creator>
    <dc:date>2015-05-27T10:43:36Z</dc:date>
    <item>
      <title>Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5648173#M56069</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to get only outer edges of pipe on picture. I am using attached VBA code to do that.&lt;/P&gt;
&lt;P&gt;Does somebody know how can I diferentiate if edge is&amp;nbsp;member of outer surface of pipe and not inner surface of pipe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will be thankfull for any idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running Inventor 2016.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards,&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2015 10:29:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5648173#M56069</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-22T10:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5648956#M56070</link>
      <description>&lt;P&gt;Klemen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should probably repost this in the Customization forum where it's more likely to get a response:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/inventor-customization/bd-p/120" target="_blank"&gt;http://forums.autodesk.com/t5/inventor-customization/bd-p/120&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2015 16:44:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5648956#M56070</guid>
      <dc:creator>ChrisMitchell01</dc:creator>
      <dc:date>2015-05-22T16:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5650861#M56082</link>
      <description>&lt;P&gt;Is here nobody who is able to understand my question? I know it is hard to get definition of outer pipe edge - but still any idea though?&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2015 14:05:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5650861#M56082</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-25T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651183#M56086</link>
      <description>&lt;P&gt;Hi Klemen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can get the edges through the &lt;STRONG&gt;Face.EdgeLoops&lt;/STRONG&gt;, where each &lt;STRONG&gt;EdgeLoop&lt;/STRONG&gt; knows if it's an outer edge collection or inner, shown by the &lt;STRONG&gt;IsOuterEdgeLoop&lt;/STRONG&gt; property.&lt;/P&gt;
&lt;P&gt;E.g.:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/flat-pattern-area/td-p/2689722" target="_self"&gt;http://forums.autodesk.com/t5/inventor-customization/flat-pattern-area/td-p/2689722&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2015 22:54:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651183#M56086</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-25T22:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651893#M56100</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am trying to understand property "IsOuterEdgeLoop". Is this property only available in sheet metal parts?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I see sample code and it is used within flatpattern.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Dim oEdgeLoop As EdgeLoop&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; For Each oEdgeLoop In oFlatPattern.TopFace.EdgeLoops&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If oEdgeLoop.IsOuterEdgeLoop Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Exit For&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Next&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The thing here is (in my specific situation) - that I have pipe, created from ordinary extrusion - and I don't have FlatPattern to work with.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What is out or in is pretty hard to decide for ordinary extrusion - is there a way to do that?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is there a clever way to do that programatically?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170298i33C9E5D2F5126EAB/image-size/medium?v=mpbl-1&amp;amp;px=-1" border="0" alt="pipePicture.png" title="pipePicture.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 14:38:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651893#M56100</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-26T14:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651904#M56101</link>
      <description>&lt;P&gt;No. All faces have the EdgeLoops collection with the IsOuterEdgeLoop property.&lt;/P&gt;
&lt;P&gt;So you just have to iterate through all the faces of the solid body, then all the EdgeLoops to find all the outer edges on all the faces.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 14:40:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651904#M56101</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-26T14:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651953#M56102</link>
      <description>&lt;P&gt;Actually, it might not be that easy, but that should be a step in the right direction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also started wondering that maybe we mean different things by outer edges.&lt;/P&gt;
&lt;P&gt;Maybe you could highlight all the edges (by selecting them in the UI) to show which edges you want to get back?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170303i7DE15525A4D0598E/image-size/medium?v=mpbl-1&amp;amp;px=-1" border="0" alt="ExternalEdges.png" title="ExternalEdges.png" /&gt;&lt;/P&gt;
&lt;P&gt;I'm also wondering why exactly you need them.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 15:09:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5651953#M56102</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-26T15:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652321#M56107</link>
      <description>&lt;P&gt;Hi Adam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Big thanks for fast and prompt response.&lt;/P&gt;
&lt;P&gt;I need edge coordinates to use their 3d coordinates&amp;nbsp;to guide CNC plasma pipe cutting machine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attaching picture to show what I think that outer edges are.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170354i1BD82B51F991A15F/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="outerEdgesMarked.png" title="outerEdgesMarked.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can see my G+ album to check java code for rotating "pipe" gotten from inventor coordinates.&lt;/P&gt;
&lt;P&gt;The coordinates are also from "inner" edges that I don't want to use for guiding plasma CNC.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://plus.google.com/u/0/photos/110230689089207649183/albums/6056408207656893201" target="_self"&gt;https://plus.google.com/u/0/photos/110230689089207649183/albums/6056408207656893201&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Especially check video:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://plus.google.com/u/0/photos/+KlemenZhivko/albums/6056408207656893201/6088317570902100226?pid=6088317570902100226&amp;amp;oid=110230689089207649183" target="_self"&gt;https://plus.google.com/u/0/photos/+KlemenZhivko/albums/6056408207656893201/6088317570902100226?pid=6088317570902100226&amp;amp;oid=110230689089207649183&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;sample of plasma cutting in action from youtube:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://youtu.be/QoF1nxKW0vw?t=51" target="_self"&gt;https://youtu.be/QoF1nxKW0vw?t=51&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The edges that are important for cutting (since I don't want to take account for bevel cutting)&amp;nbsp;are edges that are on outer surface of pipe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards!&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 19:04:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652321#M56107</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-26T19:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652648#M56114</link>
      <description>&lt;P&gt;What things are always the same about the models? Are the faces you need always tangentially connected?&lt;/P&gt;
&lt;P&gt;Knowing these things might make it easier to get what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is what I have so far. In this case you still need to find one of the outer faces:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/manufacturing/2015/05/outer-edges-of-tangentially-connected-faces.html" target="_self"&gt;http://adndevblog.typepad.com/manufacturing/2015/05/outer-edges-of-tangentially-connected-faces.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 23:40:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652648#M56114</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-26T23:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652656#M56115</link>
      <description>&lt;P&gt;Adam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I havent even&amp;nbsp;imagined, this&amp;nbsp;superb level of service.&lt;/P&gt;
&lt;P&gt;The results of your code is almost perfect -&amp;nbsp;you will see that edges on outer shell that result from holes in part are not selected, but as linear edges they also must be cutted with plasma cutter.&lt;/P&gt;
&lt;P&gt;Is there a way to select them&amp;nbsp;also?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for fast response and anticipation how to solve this!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170387iA28BBD11FBCAECC4/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="result.png" title="result.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 23:56:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652656#M56115</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-26T23:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652938#M56121</link>
      <description>&lt;P&gt;Also macro you posted has problem selecting straight lines. I am attaching part file for this "pipe". - see picture:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170436i059B3BF29A25FE71/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="AnotherSample.png" title="AnotherSample.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2015 08:25:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652938#M56121</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-27T08:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652943#M56122</link>
      <description>&lt;P&gt;Only you know what exactly needs to be selected. &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt; You have to try to put it into an algorithm.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So it seems it's not only outer edges of the face you want to select but also ones around holes.&lt;/P&gt;
&lt;P&gt;Which holes do &lt;STRONG&gt;not&lt;/STRONG&gt; need to be selected? Only the circular ones?&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2015 08:31:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5652943#M56122</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-27T08:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653060#M56128</link>
      <description>&lt;P&gt;Actually all circles on outer shell of pipe from holes NEEDS to be selected. and also all edges from extrusions from Extrude feature like triangle for example. The edges that are not to be selected are edges from pipe itselve - for example round edges in direction longitudinal of pipe - that are part of pipe itself (this edges don't need to be cutted).&lt;/P&gt;
&lt;P&gt;I think I know what mislead you - and I am sorry for that - I should also mark&amp;nbsp;circle from hole... Here is another sample to better clarify myselve.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170461i4CCF63E87779445B/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="desiredSelection.png" title="desiredSelection.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2015 10:12:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653060#M56128</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-27T10:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653100#M56129</link>
      <description>&lt;P&gt;In that case you just have to remove the &lt;STRONG&gt;IsOuterEdgeLoop&lt;/STRONG&gt; check and can use directly the &lt;STRONG&gt;Edges&lt;/STRONG&gt; collection.&lt;/P&gt;
&lt;P&gt;So just had to modify this function:&lt;/P&gt;
&lt;PRE&gt;' Check all edges, but ignore common
' edges with other faces
Sub GetOuterEdgesOfFaces( _
faces As ObjectCollection, edges As ObjectCollection)
  Dim f As Face
  For Each f In faces
    Dim e As Edge
    For Each e In f.edges
      Dim f2 As Face
      For Each f2 In e.faces
        If (Not f Is f2) And _
           (Not IsInCollection(f2, faces)) And _
           (Not IsInCollection(e, edges)) Then
          Call edges.Add(e)
        End If
      Next
    Next
  Next
End Sub&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 May 2015 10:43:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653100#M56129</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-27T10:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653120#M56130</link>
      <description>&lt;P&gt;I hope I found solution (for now it works for me) - and basically I am checking feature names of edges. If they are different it means they are not part of same feature therefore&amp;nbsp;they are my real edges.&lt;/P&gt;
&lt;P&gt;"False" - "pipe" edges have both feature names same and therefore should not be selected...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170474i5C521472D29A6C54/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="‭itWorks.png" title="‭itWorks.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added following to your macro:&lt;/P&gt;
&lt;PRE&gt;For Each e In f.edges
If Not IsInCollection(e, edges) Then
Debug.Print e.faces.Item(1).CreatedByFeature.Name
Debug.Print e.faces.Item(2).CreatedByFeature.Name
If e.faces.Item(1).CreatedByFeature.Name &amp;lt;&amp;gt; e.faces.Item(2).CreatedByFeature.Name Then
Call edges.Add(e)
End If
End If
Next e&lt;/PRE&gt;
&lt;P&gt;Thank you for support...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2015 11:20:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5653120#M56130</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-27T11:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5654755#M56170</link>
      <description>&lt;P&gt;Just thinking further for my final goal - do you think it would be possible to unroll 3d lines that I got from polygon of edge, to get flat pattern?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 09:56:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5654755#M56170</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-28T09:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5654855#M56181</link>
      <description>&lt;P&gt;Here is simulation of plasma cuting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 11:48:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5654855#M56181</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-28T11:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5655776#M56207</link>
      <description>&lt;P&gt;You could build up your part as a sheetmetal:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170772i0C383C89BF3A1C3B/image-size/medium?v=mpbl-1&amp;amp;px=-1" border="0" alt="sheetmetal1.png" title="sheetmetal1.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can unfold the whole thing:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/170773iB29E2CB7669EC074/image-size/medium?v=mpbl-1&amp;amp;px=-1" border="0" alt="sheetmetal2.png" title="sheetmetal2.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Part is attached.&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 20:30:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5655776#M56207</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2015-05-28T20:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5655821#M56209</link>
      <description>&lt;P&gt;Hi Adam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that you for idea but I think this aproach will require few more manual steps that I want to avoid. Also my personal feelig is that metal sheet design&amp;nbsp;induce some limitation from start, and&amp;nbsp;one is more flexible designing orinary part.&lt;/P&gt;
&lt;P&gt;Also I want to have as much as possible automated solution.&lt;/P&gt;
&lt;P&gt;With few tweaks of Java code, program works pretty ok for now - and currently (still as animation on computer), it looks there are no problems with it.&lt;/P&gt;
&lt;P&gt;It could be different story when I will put it in practice, but this is still to come and we will see this later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to check here is video of program in action.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://plus.google.com/u/0/photos/110230689089207649183/albums/6056408207656893201/6154029044215086962?pid=6154029044215086962&amp;amp;oid=110230689089207649183" target="_blank"&gt;https://plus.google.com/u/0/photos/110230689089207649183/albums/6056408207656893201/6154029044215086962?pid=6154029044215086962&amp;amp;oid=110230689089207649183&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 21:03:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/5655821#M56209</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2015-05-28T21:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2016 enumerating outer edges</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/7040365#M71859</link>
      <description>&lt;P&gt;Hi Adam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your solution works brilliantly for square and rectangular pipes but for circular ones it doesn't - it enumerates precisely 0 edges.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example pipe like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="roundPipe.png" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/349095iF3C9196E32661933/image-size/large?v=v2&amp;amp;px=999" role="button" title="roundPipe.png" alt="roundPipe.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could there be also solution for circular pipe not only rectangular or square?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps: check usage of your wonderful Inventor algorithm in:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/zhivko/PipeCutter" target="_self"&gt;https://github.com/zhivko/PipeCutter&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2017 12:50:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-2016-enumerating-outer-edges/m-p/7040365#M71859</guid>
      <dc:creator>klemen_zivkovic</dc:creator>
      <dc:date>2017-04-25T12:50:10Z</dc:date>
    </item>
  </channel>
</rss>

