<?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 Adding edges to Fillet feature in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/12620371#M164534</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you add edges to an EdgeCollection used in a FilletFeature? Or do I have to delete the feature and add a new one ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got some iLogic code where I create fillets using&amp;nbsp;&lt;EM&gt;.Features.FilletFeatures.AddSimple()&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Can I change the&amp;nbsp;&lt;EM&gt;FilletFeature.FilletDefinition&lt;/EM&gt; afterwards?&lt;/P&gt;&lt;P&gt;When I go to &lt;EM&gt;FilletFeature.FilletDefinition.EdgeSetItem(Index).edges&lt;/EM&gt; and use &lt;EM&gt;.add()&amp;nbsp;&lt;/EM&gt;nothing happens even though&amp;nbsp; &lt;EM&gt;.count&lt;/EM&gt; goes up&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even when I change the EOP like mentioned in the help-files: (FilletRadiusEdgeSet Object)&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Property that provides access to the in the edge set. This property is only available when a FilletDefinition object is being defined to use as input for creating a fillet. When the parent FilletDefinition object is obtained from an existing Fillet, the end-of-part marker should be placed above this fillet feature to allow access this property.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Wed, 06 Mar 2024 14:18:58 GMT</pubDate>
    <dc:creator>MD_</dc:creator>
    <dc:date>2024-03-06T14:18:58Z</dc:date>
    <item>
      <title>Adding edges to Fillet feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/12620371#M164534</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you add edges to an EdgeCollection used in a FilletFeature? Or do I have to delete the feature and add a new one ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got some iLogic code where I create fillets using&amp;nbsp;&lt;EM&gt;.Features.FilletFeatures.AddSimple()&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Can I change the&amp;nbsp;&lt;EM&gt;FilletFeature.FilletDefinition&lt;/EM&gt; afterwards?&lt;/P&gt;&lt;P&gt;When I go to &lt;EM&gt;FilletFeature.FilletDefinition.EdgeSetItem(Index).edges&lt;/EM&gt; and use &lt;EM&gt;.add()&amp;nbsp;&lt;/EM&gt;nothing happens even though&amp;nbsp; &lt;EM&gt;.count&lt;/EM&gt; goes up&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even when I change the EOP like mentioned in the help-files: (FilletRadiusEdgeSet Object)&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Property that provides access to the in the edge set. This property is only available when a FilletDefinition object is being defined to use as input for creating a fillet. When the parent FilletDefinition object is obtained from an existing Fillet, the end-of-part marker should be placed above this fillet feature to allow access this property.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 06 Mar 2024 14:18:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/12620371#M164534</guid>
      <dc:creator>MD_</dc:creator>
      <dc:date>2024-03-06T14:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding edges to Fillet feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/12623040#M164565</link>
      <description>&lt;P&gt;Attached, an example of what I'm trying to do:&amp;nbsp;&lt;/P&gt;&lt;P&gt;A cube with partial fillets that I want to edit so all edges get included in the fillet feature&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim oPartDoc As PartDocument = ThisDoc.Document
Dim oCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
Dim oFilletFeature As FilletFeature = oCompDef.Features.FilletFeatures.Item(1)

oFilletFeature.SetEndOfPart(True)
Dim oSurfaceEdges As Edges = oCompDef.SurfaceBodies.Item(1).Edges
Logger.Info(oSurfaceEdges.Count &amp;amp; " edges to add")

Dim oFilletDef As FilletDefinition = oFilletFeature.FilletDefinition
Dim oFilletRadiusEdgeSet As FilletRadiusEdgeSet = oFilletDef.EdgeSetItem(1)
Dim oEdgeColl As EdgeCollection = oFilletRadiusEdgeSet.Edges

Logger.Info(oEdgeColl.Count &amp;amp; " edges in EdgeCollection")
oEdgeColl.Clear
Logger.Info(oEdgeColl.Count &amp;amp; " edges in EdgeCollection")
For Each oEdge As Edge In oSurfaceEdges
	oEdgeColl.Add(oEdge)
Next
Logger.Info(oEdgeColl.Count &amp;amp; " edges in EdgeCollection")
oCompDef.SetEndOfPartToTopOrBottom(False)
oPartdoc.Update&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;But nothing happens&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 08:33:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/12623040#M164565</guid>
      <dc:creator>MD_</dc:creator>
      <dc:date>2024-03-07T08:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding edges to Fillet feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/13046434#M172233</link>
      <description>anyone?</description>
      <pubDate>Thu, 26 Sep 2024 08:41:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/adding-edges-to-fillet-feature/m-p/13046434#M172233</guid>
      <dc:creator>MD_</dc:creator>
      <dc:date>2024-09-26T08:41:27Z</dc:date>
    </item>
  </channel>
</rss>

