Message 1 of 6
API navigation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
What is actually the difference of grabbing the extrude feature by navigating for it through self assigned variables. And by using the "direct path" suggested in code hint.
app = adsk.core.Application.get()
ui = app.userInterface
doc = app.documents.add(adsk.core.DocumentTypes.FusionDesignDocumentType) product = app.activeProduct design = adsk.fusion.Design.cast(product)
rootComp = design.rootComponent
Difference between this:
extrudes = rootComp.features.extrudeFeatures
And this:
extrudes = adsk.fusion.extrudeFeatures
@BrianEkins you use to have very good answers:) hope you understand the question