Select specific profile from sketch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have just recently started using the Fusion 360 API for Python. I want it to automatically generate a Model that consists of many (~1000) simple extrusions.
I can create a sketch, draw a rectangle (using "addTwoPointRectangle") and create an extrusion. However, If I create two or more rectangles in the same sketch, I found that the list "sketch.profiles.item(...)" that I would then use to create the extrusions is not necessarily in the same order as I created the rectangles.
Is there any way to specify a rectangle and then later access the profile that corresponds to this specific rectangle?
What I currently do as a workaround is create a new sketch for each extrusion, then delete the sketch which gets quite slow for 500+ extrusions.
Thanks for your help.