Announcements
Autodesk Community will be read-only between April 26 and April 27 as we complete essential maintenance. We will remove this banner once completed. Thanks for your understanding

“Connect the Dots” add-in

chuck767
Advocate Advocate
2,399 Views
14 Replies
Message 1 of 15

“Connect the Dots” add-in

chuck767
Advocate
Advocate

How can I get this add-in?

 

I can not get it from GitHub as I expected to. 

0 Likes
2,400 Views
14 Replies
Replies (14)
Message 2 of 15

Rushikesh.kadam
Autodesk
Autodesk

@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,




Rushikesh Kadam
Senior QA Engineer
Quality Assurance
Autodesk, Inc.


0 Likes
Message 3 of 15

JeromeBriot
Mentor
Mentor

You can use GitHubToFusion360 to automatically install the app from its GitHub repo.

 

After the installation, you have to manually edit the Python script:

  1. Go to the UTILITIES > ADD-INS > Scripts and Add-ins menu
  2. Select ConnectTheDots and click on the Edit button at the bottom of the dialog
  3. Replace every occurence of time.clock() by time.time()
  4. Save the modification

 

1 Like
Message 4 of 15

chuck767
Advocate
Advocate
Thanks for your input Jerome, I looked at GITHUB and there was no link for a download.

As I recall in using GITHUB, the download link is under “releases“. There is no releases available

So I’m wondering how do I get this “add in“.

Chuck
0 Likes
Message 5 of 15

JeromeBriot
Mentor
Mentor

That's the reason why I created the GitHubToFusion360 app.

 

No need to manually download the zip file from GitHub:

  1. Download GitHubToFusion360 from the Autodesk App Store
  2. Run the installer
  3. Open Fusion 360
  4. Go to the UTILITIES > ADD-INS > Scripts and Add-ins menu, select GitHubToFusion360 and click the Run button
  5. Enter the URL of the repo (i.e. https://github.com/kewlsak/ConnectTheDots) and click OK

 

1 Like
Message 6 of 15

chuck767
Advocate
Advocate
Thank you, I use the app and installed the “add in”. The installation worked fine but unfortunately I cannot get the app to.

I even Tried it on a simple square with one line having a 0.005 inch gap and it would not connect the dots

Any thoughts on why it’s not working for me?
0 Likes
Message 7 of 15

JeromeBriot
Mentor
Mentor
0 Likes
Message 8 of 15

chuck767
Advocate
Advocate
Here is simple sample file with small gap.


https://a360.co/3PrSZ8X
0 Likes
Message 9 of 15

JeromeBriot
Mentor
Mentor

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.

 

connectthedots.PNG

 

1 Like
Message 10 of 15

chuck767
Advocate
Advocate
Thank you so much, I will try it as soon as I can get back to my home base.

0 Likes
Message 11 of 15

chuck767
Advocate
Advocate
  1. I have tried to replied to this thread  twice but it does not seem to register.
  2. The fix worked on my simple file but it does not work on the large file I was working on. Below is a public link for the file that I’m working on.

https://a360.co/3LqhWys

0 Likes
Message 12 of 15

chuck767
Advocate
Advocate
The file I’m working with it’s called “squirrel “
0 Likes
Message 13 of 15

JeromeBriot
Mentor
Mentor

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.

 

0 Likes
Message 14 of 15

chuck767
Advocate
Advocate

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.   

0 Likes
Message 15 of 15

qipsys
Community Visitor
Community Visitor

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

0 Likes