Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
just new in programming with the api of Fusion 360. I am looking for a possibility to read out the distance of an extrusion of an existing component/body. So I don't want to create a new one or append it somewhere, just read out an existing structure like this
- Component 1
- Component 2
- Body 1
I found a lot of samples how to create a new extrusion, but nothing about reading out this specific property. At the moment I iterate through my object tree and check if there is an extrusion:
for occ in occurrences: if occ.isVisible: if occ.component.features.extrudeFeatures.count > 0: occ.component.features.extrudeFeatures[0].
For sure, a simple thing, but I didn't fount anything here.
Can someone help me please.
Thanks.
Solved! Go to Solution.