<?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: SplitFaceFeature in direct edit mode returns None in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839405#M7164</link>
    <description>&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running SplitFace in the GUI does not add the feature to the browser tree.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1004337i60B0583785A8FD90/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I assume the same is true for the API.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Dec 2021 08:05:41 GMT</pubDate>
    <dc:creator>kandennti</dc:creator>
    <dc:date>2021-12-23T08:05:41Z</dc:date>
    <item>
      <title>SplitFaceFeature in direct edit mode returns None</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10835092#M7160</link>
      <description>&lt;P&gt;I was really hoping that I would be able to grab the collection of faces from the&amp;nbsp;SplitFaceFeature, but it always returns None/null in direct edit mode (a requirement of my current use case). The component.features.splitFaceFeatures remains empty as well. Is there any simple way to get the modified faces or the newly created edges resulting from a&amp;nbsp;SplitFaceFeature?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 05:03:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10835092#M7160</guid>
      <dc:creator>mcd8604</dc:creator>
      <dc:date>2021-12-21T05:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: SplitFaceFeature in direct edit mode returns None</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10835112#M7161</link>
      <description>&lt;P&gt;Actually, it wasn't as difficult as I thought it would be. I just create a list prior to the split and compare the entities from the body after the split:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;edgesPrior = [edge for edge in body.edges]
.. split face code ..
edgesNew = [edge for edge in body.edges if edge not in edgesPrior]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I won't mark this as a solution for now in case someone has a better solution.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 05:22:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10835112#M7161</guid>
      <dc:creator>mcd8604</dc:creator>
      <dc:date>2021-12-21T05:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: SplitFaceFeature in direct edit mode returns None</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839100#M7162</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6681450"&gt;@mcd8604&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The fact that all (or most) features called in direct edit mode do not return the respective Feature object is weird to me. Reading the documentation, it feels like they are actually supposed to return something instead of None.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nonetheless, it is the state of the API now and we can only develop some workarounds (like what you have done here).&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 02:54:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839100#M7162</guid>
      <dc:creator>j.han97</dc:creator>
      <dc:date>2021-12-23T02:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: SplitFaceFeature in direct edit mode returns None</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839345#M7163</link>
      <description>&lt;P&gt;Yea, it's unfortunate. My guess is that some or most of the features get disposed of at some point. Then, if a handle was returned through the API then it would become invalid at the time of disposal. That or it was already disposed and there is no handle to return, hence the None. I have no idea though, this is pure speculation.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 07:16:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839345#M7163</guid>
      <dc:creator>mcd8604</dc:creator>
      <dc:date>2021-12-23T07:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: SplitFaceFeature in direct edit mode returns None</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839405#M7164</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running SplitFace in the GUI does not add the feature to the browser tree.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1004337i60B0583785A8FD90/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I assume the same is true for the API.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 08:05:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/splitfacefeature-in-direct-edit-mode-returns-none/m-p/10839405#M7164</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2021-12-23T08:05:41Z</dc:date>
    </item>
  </channel>
</rss>

