<?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 Betreff: Projecting a face to a sketch only split half in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11376890#M5544</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9833871"&gt;@alex_winter&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You wont get any projection because this condition restricts the type of faces to project:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;. . .
if ret and normal.x == 0 and normal.z == 0 and face.centroid.z &amp;gt; 0:
. . .&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you are changing the plane tool to split the body, you might also need to change the orientation of the sketch to project to and project on it only the faces that are parallel to it, like so:&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;&lt;LI-CODE lang="python"&gt;skt: adsk.fusion.Sketch = compA.sketches.add(basePlane) # define sketck plane parallel to the split plane tool
# skt: adsk.fusion.Sketch = compA.sketches.add(compA.xZConstructionPlane)

for face in body3.faces:
    (ret, normal) = face.evaluator.getNormalAtPoint(face.centroid)
    face_plane = adsk.core.Plane.create(face.centroid, normal)
    if face_plane.isCoPlanarTo(basePlane.geometry): # project only parallel faces to split plane tool
        skt.project(face)&lt;/LI-CODE&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;&lt;P&gt;It worked on my side with all 3 main planes of the design.&lt;/P&gt;&lt;P&gt;It is what you need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Jorge&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Aug 2023 01:00:31 GMT</pubDate>
    <dc:creator>Jorge_Jaramillo</dc:creator>
    <dc:date>2023-08-29T01:00:31Z</dc:date>
    <item>
      <title>Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11355989#M5532</link>
      <description>&lt;P&gt;Hello, I Need some help trying to project a face onto a sketch that has been split using the split body feature. When I run the script it projects around the whole component and not the body/face.&lt;/P&gt;&lt;P&gt;So the way this is suppose to work is Make a copy of body1 and then split that copied body in half using splitbody and then make a sketch on that split-body xZ plane and then project the split face(Z+ side only) onto the sketch.&lt;/P&gt;&lt;P&gt;The Part I am testing this on is a tube with a Through Hole in the center of it. I have attached it below.&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;&lt;LI-CODE lang="general"&gt;import adsk.core, adsk.fusion, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        

        # Get active design
        product = app.activeProduct
        design = adsk.fusion.Design.cast(product)
        if not design:
            ui.messageBox('No active Fusion design', 'No Design')
            return

        # Get root component in this design
        rootComp = design.rootComponent

        # Get the sub component
        occs = rootComp.occurrences
        compA = occs.item(6).component

        # Get the body in the sub component  
        body1 = compA.bRepBodies[0]
        
        # Copy/paste body from sub component to sub component
        compA.features.copyPasteBodies.add(body1)

        # Get the second copied body  
        body2 = compA.bRepBodies[1]

        # Create SplitBodyFeatureInput
        splitBodyFeats = rootComp.features.splitBodyFeatures
        splitBodyInput = splitBodyFeats.createInput(body2, compA.xZConstructionPlane, True)

        # Create split body feature
        splitBodyFeats.add(splitBodyInput)

        
        # Get the second body split  
        body3 = compA.bRepBodies[1]

        targetBody: adsk.fusion.BRepBody = body3

        skt: adsk.fusion.Sketch = compA.sketches.add(
            compA.xZConstructionPlane
        )

        skt.project(targetBody)
        
            
    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 17:55:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11355989#M5532</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T17:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356417#M5533</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9833871"&gt;@alex_winter&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to project the faces that are in the XZ plane, instead of the whole body (or project all of the faces and choose the profiles you want, since I don't have your design to test it here).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replace the last sentence in your function by this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;    # skt.project(body3)
    for face in body3.faces:
        (ret, normal) = face.evaluator.getNormalAtPoint(face.centroid)
        if ret and normal.x == 0 and normal.z == 0:
            skt.project(face)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if it works for you.&amp;nbsp; Hope this help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jorge&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 18:03:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356417#M5533</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2022-08-12T18:03:53Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356449#M5534</link>
      <description>&lt;P&gt;Thanks for replying.&amp;nbsp; I have tested your code out and it works except It is doing it on both sides of the plane.&amp;nbsp; I will show you a picture.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 18:29:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356449#M5534</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T18:29:14Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356466#M5535</link>
      <description>&lt;P&gt;I got the same result as you, since the XZ plane cuts the tube generating two planar faces.&lt;/P&gt;&lt;P&gt;Do you expect only one of them?&amp;nbsp; If so, the slice need to be done with a plane that only cuts the body just in one part of the tube.&lt;/P&gt;&lt;P&gt;Or am I missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jorge&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 18:40:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356466#M5535</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2022-08-12T18:40:30Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356476#M5536</link>
      <description>Yes I was expecting only one side for the sketch to be on preferably the Z+ Side.</description>
      <pubDate>Fri, 12 Aug 2022 18:50:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356476#M5536</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T18:50:08Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356499#M5537</link>
      <description>&lt;P&gt;I'm lost.&lt;BR /&gt;What do you mean by "the sketch to be on preferably the Z+ side"?&lt;BR /&gt;&lt;BR /&gt;Is you Y+ side point up in you screen?&lt;BR /&gt;I use the split plane you had in the initial script, which is on plane XZ.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 19:08:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356499#M5537</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2022-08-12T19:08:44Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356509#M5538</link>
      <description>&lt;P&gt;Sorry yes in the component Origin, I have Y+ is up just like in the last picture I sent.&lt;BR /&gt;&lt;BR /&gt;so when I mean ""the sketch to be on preferably the Z+ side" that is the right side in the picture above.&amp;nbsp; What you have is correct except I just want the one side in that picture (right side).&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 19:26:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356509#M5538</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T19:26:28Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356531#M5539</link>
      <description>Do you mean XY plane?</description>
      <pubDate>Fri, 12 Aug 2022 19:28:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356531#M5539</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2022-08-12T19:28:42Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356546#M5540</link>
      <description>&lt;P&gt;No XZ Plane. It is splitting on the correct plane but I only want the one side not both.&amp;nbsp; Here is another picture.&amp;nbsp; I also have the fusion file in the original post if it helps.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 19:37:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356546#M5540</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T19:37:32Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356566#M5541</link>
      <description>&lt;P&gt;You just need to select the face which centroid has a positive Z coordinate, like so:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;    for face in body3.faces:
        (ret, normal) = face.evaluator.getNormalAtPoint(face.centroid)
        app.log(f'{ret=} {normal.asArray()=}')
        if ret and normal.x == 0 and normal.z == 0 and face.centroid.z &amp;gt; 0:
            skt.project(face)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked for me (my model orientation is Z+ up):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="wtallerdemadera_0-1660333686538.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1103401iFE4B6C40E888FC6E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="wtallerdemadera_0-1660333686538.png" alt="wtallerdemadera_0-1660333686538.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Just one profile projected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jorge&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 19:49:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356566#M5541</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2022-08-12T19:49:21Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356570#M5542</link>
      <description>Perfect &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks that worked.</description>
      <pubDate>Fri, 12 Aug 2022 19:54:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11356570#M5542</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-12T19:54:50Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11376562#M5543</link>
      <description>&lt;P&gt;I have made an adjustment which I am trying to get working properly in the above code.&amp;nbsp; So instead of a designated plane(XZ), I made an adjustment to now have the user select the plane to split on.&amp;nbsp; After I get the second body in the code above, I added this:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;msg :str = 'Select ConstructionPlanes'
        selFiltter :str = 'ConstructionPlanes'
        sel :adsk.core.Selection = selectEnt(msg ,selFiltter)
        if not sel: return

        # selected plane
        basePlane :adsk.fusion.ConstructionPlane = sel.entity&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;and then replaced compA.xZConstructionPlane with basePlane in splitBodyFeats.createInput line.&amp;nbsp; This all works except for I cant get skt.project(body3) to create a project sketch.&amp;nbsp; I&amp;nbsp; sort of understood how face.evaluator worked before but now we cant constrain it on the normal.x and normal.z since we dont know what axis is selected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 19:30:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11376562#M5543</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-23T19:30:24Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11376890#M5544</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9833871"&gt;@alex_winter&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You wont get any projection because this condition restricts the type of faces to project:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;. . .
if ret and normal.x == 0 and normal.z == 0 and face.centroid.z &amp;gt; 0:
. . .&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you are changing the plane tool to split the body, you might also need to change the orientation of the sketch to project to and project on it only the faces that are parallel to it, like so:&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;&lt;LI-CODE lang="python"&gt;skt: adsk.fusion.Sketch = compA.sketches.add(basePlane) # define sketck plane parallel to the split plane tool
# skt: adsk.fusion.Sketch = compA.sketches.add(compA.xZConstructionPlane)

for face in body3.faces:
    (ret, normal) = face.evaluator.getNormalAtPoint(face.centroid)
    face_plane = adsk.core.Plane.create(face.centroid, normal)
    if face_plane.isCoPlanarTo(basePlane.geometry): # project only parallel faces to split plane tool
        skt.project(face)&lt;/LI-CODE&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;&lt;P&gt;It worked on my side with all 3 main planes of the design.&lt;/P&gt;&lt;P&gt;It is what you need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Jorge&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 01:00:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11376890#M5544</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2023-08-29T01:00:31Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11378039#M5545</link>
      <description>Thanks :), this worked on that model I gave you (since the component origin and rootComp origin are in the same location) but I have another where the component origin is at a different location and that one didn't make the project sketch.</description>
      <pubDate>Wed, 24 Aug 2022 12:21:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11378039#M5545</guid>
      <dc:creator>alex_winter</dc:creator>
      <dc:date>2022-08-24T12:21:32Z</dc:date>
    </item>
    <item>
      <title>Betreff: Projecting a face to a sketch only split half</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11379040#M5546</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9833871"&gt;@alex_winter&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I understood you well, you have to change the sketch plane.&lt;/P&gt;&lt;P&gt;In the example I sent to you I used the same plane for both, split and sketch.&lt;/P&gt;&lt;P&gt;If you need to sketch on a different plane, you can add a new call to "&lt;SPAN&gt;selectEnt()" to let the user choose the sketch plane to project to.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;&lt;STRONG&gt;Jorge&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 01:00:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/projecting-a-face-to-a-sketch-only-split-half/m-p/11379040#M5546</guid>
      <dc:creator>Jorge_Jaramillo</dc:creator>
      <dc:date>2023-08-29T01:00:46Z</dc:date>
    </item>
  </channel>
</rss>

