<?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: How to pick edges in Solid3D in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8271538#M24886</link>
    <description>&lt;P&gt;hey Seant, thanks. That code in Swamp link really helped.&lt;/P&gt;</description>
    <pubDate>Mon, 17 Sep 2018 04:56:02 GMT</pubDate>
    <dc:creator>strsuraj</dc:creator>
    <dc:date>2018-09-17T04:56:02Z</dc:date>
    <item>
      <title>How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8242996#M24881</link>
      <description>&lt;P&gt;I have a solid3d and would like to fillet the edges, picked by me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I came across below code, but it filters &lt;U&gt;&lt;STRONG&gt;all&lt;/STRONG&gt;&lt;/U&gt; the edges of selected Solid3d &lt;STRONG&gt;sol&lt;/STRONG&gt; and does fillet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ObjectId[] ids = new ObjectId[] { &lt;STRONG&gt;sol&lt;/STRONG&gt;.ObjectId };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SubentityId subentId = new SubentityId(SubentityType.Null, IntPtr.Zero);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;FullSubentityPath path = new FullSubentityPath(ids, subentId);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;List&amp;lt;SubentityId&amp;gt; subentIds = new List&amp;lt;SubentityId&amp;gt;();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;DoubleCollection radii = new DoubleCollection();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;DoubleCollection startSetback = new DoubleCollection();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;DoubleCollection endSetback = new DoubleCollection();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;using (Autodesk.AutoCAD.BoundaryRepresentation.Brep brep = new Autodesk.AutoCAD.BoundaryRepresentation.Brep(path))&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;{&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; foreach (Autodesk.AutoCAD.BoundaryRepresentation.Edge edge in brep.Edges)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;subentIds.Add(edge.SubentityPath.SubentId);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;radii.Add(6.0); startSetback.Add(5.0); endSetback.Add(0.0);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;BR /&gt;sol.FilletEdges(subentIds.ToArray(), radii, startSetback, endSetback);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I pick edges after selecting the solid ??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2018 07:37:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8242996#M24881</guid>
      <dc:creator>strsuraj</dc:creator>
      <dc:date>2018-09-04T07:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8245530#M24882</link>
      <description>&lt;P&gt;This thread does not answer your question specifically, but it may offer some information&amp;nbsp;to assist the quest:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/net/select-lines-and-faces/m-p/7754428#M57408&amp;nbsp;" target="_blank"&gt;https://forums.autodesk.com/t5/net/select-lines-and-faces/m-p/7754428#M57408&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 05:38:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8245530#M24882</guid>
      <dc:creator>SEANT61</dc:creator>
      <dc:date>2018-09-05T05:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8248827#M24883</link>
      <description>&lt;P&gt;Hi Seant, thanks for your reply. I went through that link and got&amp;nbsp;quite a logic about how to proceed further.&lt;/P&gt;&lt;P&gt;Now&amp;nbsp;I am able to pick as many edges I wish to&amp;nbsp;and&amp;nbsp;fillet does happens &lt;U&gt;but&lt;/U&gt; only at the &lt;STRONG&gt;first edge&lt;/STRONG&gt; picked by me. Even the &lt;EM&gt;PromptSelectionResult&lt;/EM&gt; shows &lt;U&gt;Count&lt;/U&gt; as&lt;STRONG&gt; 1&lt;/STRONG&gt;. Can you help with this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have made&amp;nbsp;&lt;STRONG&gt;ForceSubSelections = true;&amp;nbsp;&lt;/STRONG&gt;so has it got anything to do with giving back just one edge as selection.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 06:40:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8248827#M24883</guid>
      <dc:creator>strsuraj</dc:creator>
      <dc:date>2018-09-06T06:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8248991#M24884</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5021888"&gt;@strsuraj&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Most of the Face Area routine was written quite a while ago.&amp;nbsp; I’m pretty sure that the same general process would work with edges as well, but I need to review my code to re-acquaint myself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the meantime, why don’t you post your current code.&amp;nbsp; We should be able to get something working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sean&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 07:59:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8248991#M24884</guid>
      <dc:creator>SEANT61</dc:creator>
      <dc:date>2018-09-06T07:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8254563#M24885</link>
      <description>&lt;P&gt;The code in the Swamp.org link can be modified to isolate edge selection.&amp;nbsp; In the attached screencast, I just used a hardcoded radius amount, though that too could be part of the user interaction.&lt;BR /&gt;Give the modification a go.&amp;nbsp; There are a couple of areas that may throw a roadblock; let me know if you need some assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/9064a019-3c47-4ffc-8a05-498fe2c6e8d4" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Sep 2018 09:23:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8254563#M24885</guid>
      <dc:creator>SEANT61</dc:creator>
      <dc:date>2018-09-08T09:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8271538#M24886</link>
      <description>&lt;P&gt;hey Seant, thanks. That code in Swamp link really helped.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 04:56:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8271538#M24886</guid>
      <dc:creator>strsuraj</dc:creator>
      <dc:date>2018-09-17T04:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to pick edges in Solid3D</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8271808#M24887</link>
      <description>&lt;P&gt;You're welcome.&amp;nbsp; I'm happy that it helped.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 08:03:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-pick-edges-in-solid3d/m-p/8271808#M24887</guid>
      <dc:creator>SEANT61</dc:creator>
      <dc:date>2018-09-17T08:03:06Z</dc:date>
    </item>
  </channel>
</rss>

