@chuck767 Apologies but I am not able to understand the requirement. Are you looking for a Fusion 360 add-in? Did you try with Autodesk App Store? If more details are provided someone on the forum will be able to help.
Regards,
You can use GitHubToFusion360 to automatically install the app from its GitHub repo.
After the installation, you have to manually edit the Python script:
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
That's the reason why I created the GitHubToFusion360 app.
No need to manually download the zip file from GitHub:
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
Can you share your test design?
=> How to share a Fusion 360 design
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 forked the repo and I fixed some bugs.
Run GitHubToFusion again using this URL https://github.com/JeromeBriot/fusion360-ConnectTheDots
You have to select the sketchlines with the mouse before running the ConnectThedots script.
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
Unfortunately, the app crashes without displaying an error message on my machine. I don't have time to investigate it.
Note that the process will be very slow if you select too many points at the same time.
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
Thank you,
I can understand your time constraint.
I am trying to select tool paths for plasma cutting this squirrel and I presume since there are gaps in the shape I am not able to select the toolpaths that I want.
I actually ran the sketch repair or whatever it’s called and it said there were no gaps. So I’m not sure what’s going on.
I think I will start a new post simply asking why I cannot select tool paths. Maybe somebody has a clever way to do this.
i change this block
from:
for merge in points[index+1:]:
to:
points.removeByIndex(i)
for merge in points:
because points is collection, and on iteration we delete previous point from collection