<?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: Extruding 3D sketch by using API in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12170716#M10722</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9643223"&gt;@shutov441-vuz&lt;/a&gt;&amp;nbsp;did you ever find a solution to this issue?&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5741855"&gt;@BrianEkins&lt;/a&gt;&amp;nbsp;Is creating a surface from a 3D sketch possible using the API? It is easily done when using the extrude interface in fusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joshuamursic_0-1692049739839.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1253179i42F6DD84F05F0478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joshuamursic_0-1692049739839.png" alt="Joshuamursic_0-1692049739839.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2023 21:49:12 GMT</pubDate>
    <dc:creator>Joshua.mursic</dc:creator>
    <dc:date>2023-08-14T21:49:12Z</dc:date>
    <item>
      <title>Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9751456#M10710</link>
      <description>&lt;P&gt;Hello! I have one strange task. I need to extrude sketch (fig. 1)&amp;nbsp;&lt;SPAN&gt;to get something similar to fig. 2 by using API. I am using Python. I figured out how to extrude sketch&amp;nbsp;lying in one plane, but how to extrude a three-dimensional sketch, I don't understand, tell me please in which direction to think. Also i need to use profile from current project.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sketch&amp;nbsp;=&amp;nbsp;rootComp.sketches.itemByName(&lt;/SPAN&gt;&lt;SPAN&gt;'sketchName'&lt;/SPAN&gt;&lt;SPAN&gt;) - it is right?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fig.1" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/820102i4BC666A0AD9AF0AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="sketch.PNG" alt="Fig.1" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Fig.1&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fig.2" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/820101iC688CDF04C131C65/image-size/large?v=v2&amp;amp;px=999" role="button" title="sketch_extrude.PNG" alt="Fig.2" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Fig.2&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2020 22:19:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9751456#M10710</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2020-09-16T22:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9752546#M10711</link>
      <description>&lt;P&gt;Hi - it appears you are trying to extrude a surface and not a solid.&amp;nbsp; That makes it just slightly harder, as extruding a simple planar sketch into a solid is an easy call to ExtrudeFeatures.addSimple.&amp;nbsp; In your case, you will have to use the more advanced ExtrudeFeatures.add method which requires a bit more setup.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a sample I threw together that extrudes a surface using the first profile in the sketch Sketch1, and a positive direction of 10mm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import adsk.core, adsk.fusion, adsk.cam, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        design = app.activeProduct
        rootComp = design.rootComponent
        extrudes = rootComp.features.extrudeFeatures

        # locate our sketch 
        sketch = rootComp.sketches.itemByName('Sketch1')
        if not sketch:
            ui.messageBox("Unable to locate sketch")
            return

        # set extrude distance to 10mm
        mm10 = adsk.core.ValueInput.createByString("10 mm")
        distance = adsk.fusion.DistanceExtentDefinition.create(mm10) 

        # set the extrude to do the first profile in the sketch, for the 10mm distance from above
        extrudeInput = extrudes.createInput(sketch.profiles[0], adsk.fusion.FeatureOperations.NewBodyFeatureOperation)
        extrudeInput.setOneSideExtent(distance, adsk.fusion.ExtentDirections.PositiveExtentDirection)

        # indiciate that the extrude should be a surface, not a solid 
        extrudeInput.isSolid = False

        # extrude the profile into a surface
        extrudes.add(extrudeInput)

    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 12:08:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9752546#M10711</guid>
      <dc:creator>chris.midgley</dc:creator>
      <dc:date>2020-09-17T12:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753462#M10712</link>
      <description>&lt;P&gt;Hi, thank you for your code. It is works well with flat sketches, but sketch i need to extrude is in three planes, so there are problems with choosing a profile.&amp;nbsp;&lt;SPAN&gt;I have attached a picture with a description of the error.&amp;nbsp;I don't understand how to get a profile from a 3D sketch, when I do it manually, there are no problems, there is only one profile.&amp;nbsp;&lt;/SPAN&gt;You are right, i need to extrude a surface.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Error.PNG" style="width: 399px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/820524i80F88F79CE45E50E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Error.PNG" alt="Error.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 17:14:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753462#M10712</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2020-09-17T17:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753494#M10713</link>
      <description>&lt;P&gt;It's pretty easy - you just need to add all profiles of the sketch that you want to extrude into an ObjectCollection, and use that to extrude.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import adsk.core, adsk.fusion, adsk.cam, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        design = app.activeProduct
        rootComp = design.rootComponent
        extrudes = rootComp.features.extrudeFeatures

        # locate our sketch 
        sketch = rootComp.sketches.itemByName('Sketch1')
        if not sketch:
            ui.messageBox("Unable to locate sketch")
            return

        # set extrude distance to 10mm
        mm10 = adsk.core.ValueInput.createByString("10 mm")
        distance = adsk.fusion.DistanceExtentDefinition.create(mm10) 

        # build up an ObjectCollection of all profiles to extrude
        profileCollection = adsk.core.ObjectCollection.create()
        for profile in sketch.profiles:
            profileCollection.add(profile)

        # extrude surfaces according to the profileColleciton
        extrudeInput = extrudes.createInput(profileCollection, adsk.fusion.FeatureOperations.NewBodyFeatureOperation)
        extrudeInput.setOneSideExtent(distance, adsk.fusion.ExtentDirections.PositiveExtentDirection)

        # indiciate that the extrude should be a surface, not a solid 
        extrudeInput.isSolid = False

        # extrude the profile into a surface
        extrudes.add(extrudeInput)

    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;Hopefully this does what you want.&amp;nbsp; If not, perhaps upload your model with the sketch so I can try it against that.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 17:28:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753494#M10713</guid>
      <dc:creator>chris.midgley</dc:creator>
      <dc:date>2020-09-17T17:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753894#M10714</link>
      <description>&lt;P&gt;Sadly, this doesn't work either. Attached a file with a sketch. Thank you very much for the help!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 20:10:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9753894#M10714</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2020-09-17T20:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754163#M10715</link>
      <description>&lt;P&gt;I've now spent the last three hours on this ... I've tried using sketch curves, paths, open profiles, and more yet nothing seems to work.&amp;nbsp; They all complain in the end that the curves (or profiles, depending on which API is used) are not planar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also took your sketch and extruded it, and then in the debugger looked at what Fusion creates, and it is an extrusion feature as expected, and no indication of unusual properties that be a clue as to what we need to do.&amp;nbsp; I search the web a bunch and found nothing that helped with a solution (extruding 3D sketches as surfaces using the API is not a common discussion!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My gut is this is an API bug, where they are trying to ensure the planar use of extrude even though there is a valid use case where it should work.&amp;nbsp; But just as easily it could be incorrect API usage, as the documentation is weak in these areas.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is one of my latest attempts, in case somebody else wants to take the model above and take a whack at the code.&amp;nbsp; The error occurs on the "extrudes.add" line near the end.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import adsk.core, adsk.fusion, adsk.cam, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        design = app.activeProduct
        rootComp = design.rootComponent
        extrudes = rootComp.features.extrudeFeatures

        # locate our sketch 
        sketch = rootComp.sketches.itemByName('Sketch1')
        if not sketch:
            ui.messageBox("Unable to locate sketch")
            return

        # set extrude distance to 10mm
        mm10 = adsk.core.ValueInput.createByString("10 mm")
        distance = adsk.fusion.DistanceExtentDefinition.create(mm10) 

        # define a path from the sketch curves
        path = rootComp.features.createPath(sketch.sketchCurves[0])

        # set parameters to extrude surfaces according to the profileCollection
        extrudeInput = extrudes.createInput(path, adsk.fusion.FeatureOperations.NewBodyFeatureOperation)
        extrudeInput.setOneSideExtent(distance, adsk.fusion.ExtentDirections.PositiveExtentDirection)

        # indiciate that the extrude should be a surface, not a solid 
        extrudeInput.isSolid = False

        # extrude the profile into a surface (*** this generates the error "input curves are not on the same plane" ***)
        extrudes.add(extrudeInput)

    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;If you, or anyone else, have any suggestions, I'm glad to plug away at this some more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 23:09:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754163#M10715</guid>
      <dc:creator>chris.midgley</dc:creator>
      <dc:date>2020-09-17T23:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754310#M10716</link>
      <description>&lt;P&gt;I tested this and agree with your result; that the API is being to picky about the input.&amp;nbsp; I'll see that this gets logged as a bug.&amp;nbsp; Thanks for your time investigating it.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 01:04:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754310#M10716</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2020-09-18T01:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754544#M10717</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9643223"&gt;@shutov441-vuz&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not a good idea, but it works fine.&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import adsk.core, adsk.fusion, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        design = app.activeProduct
        rootComp = design.rootComponent

        # locate our sketch 
        sketch = rootComp.sketches.itemByName('Sketch1')
        if not sketch:
            ui.messageBox("Unable to locate sketch")
            return

        txtCmds = [
            u'Commands.Start SurfaceExtrude',
            u'Commands.SetDouble AlongExtrudeDistance 1.0',
            u'NuCommands.CommitCmd'
        ]

        for cmd in txtCmds:
            app.executeTextCommand(cmd)

    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;See here.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/use-textcommands/m-p/9645688" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/use-textcommands/m-p/9645688&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 06:26:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754544#M10717</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-09-18T06:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754983#M10718</link>
      <description>&lt;P&gt;I am very grateful to you. I'm sorry you spent so much time, I hope this error will be fixed.&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="gtx-trans-icon"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 18 Sep 2020 10:21:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754983#M10718</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2020-09-18T10:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754992#M10719</link>
      <description>&lt;P&gt;It really works right. Didn't know about text commands, thanks for the solution and hint.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 10:22:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9754992#M10719</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2020-09-18T10:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9755049#M10720</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;&amp;nbsp;- I was also unaware of this ExecuteTextCommand method.&amp;nbsp; while imperfect, it is a great workaround until the API is updated!&amp;nbsp; How do you discover the supported commands and parameters?&amp;nbsp; Is there documentation, or perhaps another trick to figure it out?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 10:57:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/9755049#M10720</guid>
      <dc:creator>chris.midgley</dc:creator>
      <dc:date>2020-09-18T10:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/10239856#M10721</link>
      <description>&lt;P&gt;Thanks for the great insights&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3462001"&gt;@chris.midgley&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you guys know if I could extrude a 3D curve like this using Pipe command solid?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 05:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/10239856#M10721</guid>
      <dc:creator>haik.vasil.3</dc:creator>
      <dc:date>2021-04-15T05:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12170716#M10722</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9643223"&gt;@shutov441-vuz&lt;/a&gt;&amp;nbsp;did you ever find a solution to this issue?&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5741855"&gt;@BrianEkins&lt;/a&gt;&amp;nbsp;Is creating a surface from a 3D sketch possible using the API? It is easily done when using the extrude interface in fusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joshuamursic_0-1692049739839.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1253179i42F6DD84F05F0478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joshuamursic_0-1692049739839.png" alt="Joshuamursic_0-1692049739839.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 21:49:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12170716#M10722</guid>
      <dc:creator>Joshua.mursic</dc:creator>
      <dc:date>2023-08-14T21:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12170851#M10723</link>
      <description>&lt;P&gt;Hi! Yes, I found a solution, but it was a long time ago and I lost the final version. you can look here &lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/loft-wrong-orientation/m-p/10079230#M12679" target="_blank"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/loft-wrong-orientation/m-p/10079230#M12679&lt;/A&gt; function create_surface&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 23:08:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12170851#M10723</guid>
      <dc:creator>shutov441-vuz</dc:creator>
      <dc:date>2023-08-14T23:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extruding 3D sketch by using API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12172264#M10724</link>
      <description>&lt;P&gt;Unfortunately, this is still a problem. However, they have been doing a lot of work on the API so I'm hopeful this will be addressed sooner than later.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 14:33:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/extruding-3d-sketch-by-using-api/m-p/12172264#M10724</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2023-08-15T14:33:40Z</dc:date>
    </item>
  </channel>
</rss>

