5 After having loops for one layer, can use this class to generate the
22 std::vector<Loop>& loops;
24 commands; // contain each line of gcode, stored to layer
25 std::vector<std::vector<Cross>>& parts;
26 void G0(double x, double y, double z);
27 void G0(double x, double y);
28 void G0_high(double z);
29 void G1(double x, double y);
31 void outline(); // method before implement subLoops
32 void fill(); // method before implement subLoops
33 void doLoops(); //***method using implement subLoops***
34 void fillLoop(Loop& lp); //***method using implement subLoops***