The program works by taking the first two line segments and trying to fit an arc to it. If it can fit an arc, it tries to add the next point, and so on, until the next point no longer makes an arc. Those matching line segments are then removed and replaced with one arc. To ensure we really are matching an arc, the program also measures the accumulated length of the collected line segments and compares it to the length of the substitute arc (incorrectly called chord length in the code). There are 2 tolerance tweaking parameters defined in g1tog23.py - point_tolerance and length_tolerance which are used to determine how far off the arc the next point is allowed, and how far off each line segment is allowed to be from the true length of the arc. The values are those that I use when exporting STL from Alibre Design and generating GCode from Slic3r. Usage |
The program works by taking the first two line segments and trying to fit an arc to it. If it can fit an arc, it tries to add the next point, and so on, until the next point no longer makes an arc. Those matching line segments are then removed and replaced with one arc. To ensure we really are matching an arc, the program also measures the accumulated length of the collected line segments and compares it to the length of the substitute arc (incorrectly called chord length in the code).
There are 2 tolerance tweaking parameters defined in g1tog23.py - point_tolerance and length_tolerance which are used to determine how far off the arc the next point is allowed, and how far off each line segment is allowed to be from the true length of the arc. The values are those that I use when exporting STL from Alibre Design and generating GCode from Slic3r.
The program can read and write to stdin/stdout, or it can take the name of the file to convert as a command line argument. When passed as a command line argument, a backup of the file is made first (filename.ngc.bak) Eg
Usage...
g1tog23.py < mygcode.ngc > new_mygcode.ngc
or
g1tog23.py mygcode.ngc
In my setup, I've added the script to the Slic3r, Print Settings, Output Options, Post-processing scripts list so the script is always run when Slic3r generates output. I run slic3r under MS-Windows, so I launch g1tog23 via a batch file.
Note that the output file size can be larger, but the number of lines will never increase. This is because x/y/z/a is always output with all digits displayed even if they don't change from line to line.
At the end of the new file, a summary is added. For example,
; filament used = 16140.7mm (110.3cm3) ; GCode file processed by d:\3dprinting\g1tog23.py ; Input Line Count = 561428 ; Output Line Count = 141307 ; Line reduction = 74%