Root_Rapdise is a tool that aims to add rapid movements back into the Gcode generated by Fusion360 CAM, which has been limited by the for persional user version of Fusion.
The tool will add a user defined feederate to movements above a given threshold.
This tool is a work around to the current notification for rapid movements in Fusion360
;When using Fusion 360 for Personal Use, the feedrate of
;rapid moves is reduced to match the feedrate of cutting
;moves, which can increase machining time. Unrestricted rapid
;moves are available with a Fusion 360 Subscription.
This project is licensed under the Creative Commons 4.0 license with
Attribution-NonCommerial-ShareAlike see LICENSE.txt
for details
- Ensure Python is installed and added to path
- Download the files
- Copy the
nc_rapid.py
toC:\Windows\
- Lets test it! Goto the directory where you have your generated Gcode (Please note it'll 'Rapidise' all files in current directory and below - ensure only Gcode is in the current directory with no dub directories)
- Hold
SHIFT KEY
and clickRIGHT CLICK
- From dropdown select
Open command window here
orOpen PowerShell windows here
- Write
nc_rapid.py
and pressENTER KEY
- Open the
nc_rapid.py
in a text editor - Change the variable of
FD_AllFiles = 0
toFD_AllFiles = 1
- Save changes
- Run - Double click the
nc_rapid.py
and it'll open a file dialog where you can select the files you want to rapidise
- Open the
nc_rapid.py
in a text editor Threshold_Height = 4
#Set the threshold for when a rapid move should be appliedNew_Feedrate = 3001
#Set the new rapid move feedrate you want- Save changes