public interface GCodeCompilerExtension
Instances of class that implement this interface are used to extend the EayCNC G-code compiler to handle new G-codes.
Modifier and Type | Method and Description |
---|---|
void |
processGcodes(GCodeCompiler compiler)
is called once for each line of a G-code file being compiled.
|
void processGcodes(GCodeCompiler compiler)
The parameter compiler
provides access to the compiler that
called this method and the pre-compiled word values of on the line
being compiled, see GCodeCompiler
.
compiler
- reference to the instance of the compiler that called this method