How to buy
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © 2025 Autodesk Inc. All rights reserved
Hi!
I have an assembly. I want to change on of the joints' flip parameter to True. How can I do this?
Here's my code.
jnt :adsk.fusion.Joint =components.itemByName('MUVPAssemby').joints.itemByName('Rigid2')
flip :adsk.fusion.ModelParameter = jnt.isFlipped
flip = True
Hello,
Try this:
jnt = components.itemByName('MUVPAssemby').joints.itemByName('Rigid2')
jnt.isFlipped = True
Jérôme Briot, Freelance engineer - Mechanical design and prototyping
3D Print Plus / Pro | IDF Import | GitHub To Fusion 360 | Tube Bending Data Exchanger | Slice Data Export
Memory Used | Basic Calculator | Check Computer Specifications | Import spline from any CSV file
I have this error
You have to roll the timeline back to the joint creation step.
Use the rollTo method as explained in this example: Extrude Feature API Sample API Sample
Jérôme Briot, Freelance engineer - Mechanical design and prototyping
3D Print Plus / Pro | IDF Import | GitHub To Fusion 360 | Tube Bending Data Exchanger | Slice Data Export
Memory Used | Basic Calculator | Check Computer Specifications | Import spline from any CSV file
How to buy
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © 2025 Autodesk Inc. All rights reserved