<?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: Create Mesh Section Sketch API calls. in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768176#M8804</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I came across this script you wrote because this is exactly the functionality I am looking for to analyse a complicate mesh body. However, when I run the script the following error message (see below). Would you have any idea how to fix this?&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Failed:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 25, in run&lt;/P&gt;&lt;P&gt;createMeshPlanarSections(mesh, guideCrv)&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 77, in createMeshPlanarSections&lt;/P&gt;&lt;P&gt;createMeshSection(mesh, plane)&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 49, in createMeshSection&lt;/P&gt;&lt;P&gt;app.executeTextCommand(u'Commands.Start MeshPlanarSectionCommand')&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/webdeploy/production/6a4ee1e135d539f7735a031beb7a5c1c01c7a76f/Autodesk Fusion 360.app/Contents/Api/Python/packages/adsk/core.py", line 3690, in executeTextCommand&lt;/P&gt;&lt;P&gt;return _core.Application_executeTextCommand(self, command)&lt;/P&gt;&lt;P&gt;RuntimeError: 3 : There is no command MeshPlanarSectionCommand. Use ? to get help on available commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Feb 2023 20:05:30 GMT</pubDate>
    <dc:creator>fheidinga</dc:creator>
    <dc:date>2023-02-20T20:05:30Z</dc:date>
    <item>
      <title>Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10332367#M8800</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The create mesh section sketch feature is extremely useful and I'd like to be able to take advantage of it from some of my scripts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any pointers on the calls to make to enact the same features that "Create Mesh Section Sketch" implements?&amp;nbsp; I was hoping it was just a simple function call, but I can't seem to find it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, seeing the function calls that fusion360 makes internally while you're working with an object would provide the insight I'm looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Sat, 22 May 2021 22:47:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10332367#M8800</guid>
      <dc:creator>mpieper</dc:creator>
      <dc:date>2021-05-22T22:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10334326#M8801</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7316372"&gt;@mpieper&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the API does not provide "Create Mesh Section Sketch", we have created a sample using the Text Commands.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After the script is executed, multiple Mesh Section Sketches will be created along the guide curve by specifying the mesh body and the guide curve (the curve of the sketch).&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;# Fusion360API Python script
import adsk.core, adsk.fusion, traceback

def run(context):
    ui = adsk.core.UserInterface.cast(None)
    try:
        app :adsk.fusion.Application = adsk.core.Application.get()
        ui = app.userInterface

        # mesh body
        msg :str = 'Select MeshBody'
        selFiltter :str = 'MeshBodies'
        sel :adsk.core.Selection = selectEnt(msg ,selFiltter)
        if not sel: return
        mesh :adsk.fusion.MeshBody = sel.entity

        # guide curve
        msg :str = 'Select Guide Curve'
        selFiltter :str = 'SketchCurves,SketchLines,SketchCircles'
        sel :adsk.core.Selection = selectEnt(msg ,selFiltter)
        if not sel: return
        guideCrv :adsk.fusion.SketchEntity = sel.entity

        # mesh sections
        createMeshPlanarSections(mesh, guideCrv)

        # finish
        ui.messageBox('Done')

    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))


def createMeshPlanarSections(
    mesh :adsk.fusion.MeshBody,
    guideCrv :adsk.fusion.SketchEntity,
    count :int = 10):

    # --Support function--
    def createMeshSection(
        mesh :adsk.fusion.MeshBody,
        plane :adsk.fusion.ConstructionPlane):

        app = adsk.core.Application.get()
        ui = app.userInterface
        sels = ui.activeSelections

        app.executeTextCommand(u'Commands.Start MeshPlanarSectionCommand')

        app.executeTextCommand(u'UI.EnableCommandInput MeshSectionBodyInput')
        sels.add(mesh)

        app.executeTextCommand(u'UI.EnableCommandInput MeshSectionPlaneInput')
        sels.add(plane)

        app.executeTextCommand(u'NuCommands.CommitCmd')
    # ----

    comp :adsk.fusion.Component = guideCrv.parentSketch.parentComponent

    # create ValueInput
    ValIpt = adsk.core.ValueInput
    valIpts = [ValIpt.createByReal(v/count) for v in range(count+1)]

    # create Section
    planes :adsk.fusion.ConstructionPlanes = comp.constructionPlanes
    planeIpt :adsk.fusion.ConstructionPlaneInput = planes.createInput()

    for retio in valIpts:
        # Plane
        planeIpt.setByDistanceOnPath(guideCrv, retio)
        plane :adsk.fusion.ConstructionPlane = planes.add(planeIpt)
        plane.isLightBulbOn = False

        # Mesh Section
        createMeshSection(mesh, plane)

        adsk.doEvents()

def selectEnt(
        msg :str, 
        filtterStr :str) -&amp;gt; adsk.core.Selection :

    try:
        app = adsk.core.Application.get()
        ui = app.userInterface
        sel = ui.selectEntity(msg, filtterStr)
        return sel
    except:
        return None&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 940px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/922028iD5E78D8F6037AD65/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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 05:55:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10334326#M8801</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2021-05-24T05:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10424746#M8802</link>
      <description>sel :adsk.core.Selection = selectEnt(msg ,selFiltter) should be:&lt;BR /&gt;self :adsk.core.Selection = selectEntity(msg, selFilter)</description>
      <pubDate>Sun, 27 Jun 2021 23:47:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10424746#M8802</guid>
      <dc:creator>mpieper</dc:creator>
      <dc:date>2021-06-27T23:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10424749#M8803</link>
      <description>&lt;P&gt;Thank you very much for pointing me in the right direction / showing the use of text commands.&amp;nbsp; They are very poorly documented (not at all!).&amp;nbsp; Do you know of anywhere where there's more documentation on them?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting further down the rabbit hole:&lt;/P&gt;&lt;P&gt;In order to make the intersections useful I need a way of generating fitted splines from the mesh intersections and then getting their control points.&amp;nbsp; There's a tool "Fit Curves to Mesh Section" that performs what I'm looking for, but once again an API call is lacking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I manually add a closed fitted spine on the intersecting curve, getting the control points is done by:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;control_points = sketch.sketchCurves.sketchFittedSplines[0].controlPoints&lt;/P&gt;&lt;P&gt;for point in control_points:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.z&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and from there you can make a subset / generate new splines etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you could point me in the right direction for generating fittedSplines from the same text-driven interface it would be a boon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Sun, 27 Jun 2021 23:50:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/10424749#M8803</guid>
      <dc:creator>mpieper</dc:creator>
      <dc:date>2021-06-27T23:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768176#M8804</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I came across this script you wrote because this is exactly the functionality I am looking for to analyse a complicate mesh body. However, when I run the script the following error message (see below). Would you have any idea how to fix this?&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Failed:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 25, in run&lt;/P&gt;&lt;P&gt;createMeshPlanarSections(mesh, guideCrv)&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 77, in createMeshPlanarSections&lt;/P&gt;&lt;P&gt;createMeshSection(mesh, plane)&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/Mesh section/Mesh section.py", line 49, in createMeshSection&lt;/P&gt;&lt;P&gt;app.executeTextCommand(u'Commands.Start MeshPlanarSectionCommand')&lt;/P&gt;&lt;P&gt;File "/Application Support/Autodesk/webdeploy/production/6a4ee1e135d539f7735a031beb7a5c1c01c7a76f/Autodesk Fusion 360.app/Contents/Api/Python/packages/adsk/core.py", line 3690, in executeTextCommand&lt;/P&gt;&lt;P&gt;return _core.Application_executeTextCommand(self, command)&lt;/P&gt;&lt;P&gt;RuntimeError: 3 : There is no command MeshPlanarSectionCommand. Use ? to get help on available commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 20:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768176#M8804</guid>
      <dc:creator>fheidinga</dc:creator>
      <dc:date>2023-02-20T20:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768665#M8805</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3824946"&gt;@fheidinga&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mesh changed its command ID when it switched from a preview function to an official function. Therefore, old command IDs will result in an error.&lt;/P&gt;
&lt;P&gt;Please change the createMeshSection function to the following&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;    # --Support function--
    def createMeshSection(
        mesh :adsk.fusion.MeshBody,
        plane :adsk.fusion.ConstructionPlane):

        app = adsk.core.Application.get()
        ui = app.userInterface
        sels = ui.activeSelections

        app.executeTextCommand(u'Commands.Start ParaMeshPlanarSectionCommand')

        app.executeTextCommand(u'UI.EnableCommandInput infoBodyToModify')
        sels.add(mesh)

        app.executeTextCommand(u'UI.EnableCommandInput planeSelectionInfo')
        sels.add(plane)

        app.executeTextCommand(u'NuCommands.CommitCmd')
    # ----&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Feb 2023 01:36:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768665#M8805</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2023-02-21T01:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768981#M8806</link>
      <description>&lt;P&gt;Works beautifully now! Thanks for the fast reply!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 06:05:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11768981#M8806</guid>
      <dc:creator>fheidinga</dc:creator>
      <dc:date>2023-02-21T06:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769136#M8807</link>
      <description>&lt;P&gt;I noticed the section planes are not stacked according to the 'plane along path' command (for instance with a spline curve of 10mm lengt, 10 planes along the path of the curve every 1mm). Is there any way to do this?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 07:58:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769136#M8807</guid>
      <dc:creator>fheidinga</dc:creator>
      <dc:date>2023-02-21T07:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769219#M8808</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3824946"&gt;@fheidinga&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently, the API only supports ratios for the setByDistanceOnPath method, which creates a plane.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-46dd5f0a-e384-4707-b431-37c0e596f328" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-46dd5f0a-e384-4707-b431-37c0e596f328&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may be possible to create a plane by using a text command, but for now, try adjusting it by the number of planes to create.&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;・・・
        # mesh sections
        count = int(guideCrv.length // 0.1)
        createMeshPlanarSections(mesh, guideCrv, count)

        # finish
        ui.messageBox('Done')
・・・&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Feb 2023 08:38:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769219#M8808</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2023-02-21T08:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769319#M8809</link>
      <description>&lt;P&gt;It works with a simple mesh shape (a cilinder that I 'tesselated' into a mesh) but with a 3D scan the planes do not follow that path, strange... I will play with it a little bit further....&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scherm­afbeelding 2023-02-21 om 10.29.33.png" style="width: 981px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1179133i1E351505970205DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Scherm­afbeelding 2023-02-21 om 10.29.33.png" alt="Scherm­afbeelding 2023-02-21 om 10.29.33.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 09:29:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11769319#M8809</guid>
      <dc:creator>fheidinga</dc:creator>
      <dc:date>2023-02-21T09:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11771682#M8810</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3824946"&gt;@fheidinga&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since we did not have the 3D scan data at hand, we borrowed this data to try it out.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://grabcad.com/library/human-femur-1" target="_blank" rel="noopener"&gt;https://grabcad.com/library/human-femur-1&lt;/A&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="1.png" style="width: 912px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1179586i44FD6B766BD79617/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 didn't notice any problems, and I feel that the 3D scan data and the CAD-generated mesh data are the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 02:05:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11771682#M8810</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2023-02-22T02:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mesh Section Sketch API calls.</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11771991#M8811</link>
      <description>&lt;P&gt;Thanks for checking! I see what's going on, I have been working for quite some time on this scan/model in the Front view orientation and assumed that the slices were taken in this perpendicular to this plane/direction too. However, they were made perpendicular to the Top view plane. Turning the scan 90 degrees solved the problem! Pretty silly I had not checked this before &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Thanks for the effort!&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scherm­afbeelding 2023-02-22 om 07.44.15.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1179637iD8D4EE998C329D9D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Scherm­afbeelding 2023-02-22 om 07.44.15.png" alt="Scherm­afbeelding 2023-02-22 om 07.44.15.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scherm­afbeelding 2023-02-22 om 07.44.23.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1179638i1255A14A22EA60CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Scherm­afbeelding 2023-02-22 om 07.44.23.png" alt="Scherm­afbeelding 2023-02-22 om 07.44.23.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 06:54:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/create-mesh-section-sketch-api-calls/m-p/11771991#M8811</guid>
      <dc:creator>fheidinga</dc:creator>
      <dc:date>2023-02-22T06:54:16Z</dc:date>
    </item>
  </channel>
</rss>

