The stl2ngc
program converts an STL file to LinuxCNC compatible G-code.
First, install OpenCAMLib, see: https://github.com/aewallin/opencamlib
git clone https://github.com/aewallin/opencamlib && cd opencamlib
mkdir build && cd build && cmake ../src && make -j4
sudo make install
sudo cp libocl.so.* /usr/lib
Next, checkout stl2ngc
from git and run make
and sudo make install
:
git clone https://github.com/koppi/stl2ngc && cd stl2ngc
make
sudo make install
To convert example.stl
to example.ngc
run:
cat example.stl | stl2ngc > example.ngc
See Wiki.
-
This is an early release, expect errors and missing features.
Please fork the repo.
-
No Gui? - Yes, only command-line for now.
- Jakob Flierl - koppi