Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GCode.hpp « libslic3r « src « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a889532ea699145795e37895c1500be022149d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef slic3r_GCode_hpp_
#define slic3r_GCode_hpp_

#include <myinit.h>
#include <string>

namespace Slic3r {

// draft for a binary representation of a G-code line

enum GCodeCmdType {
    gcctSyncMotion,
    gcctExtrude,
    gcctResetE,
    gcctSetTemp,
    gcctSetTempWait,
    gcctToolchange,
    gcctCustom
};

class GCodeCmd {
    public:
    GCodeCmdType type;
    float X, Y, Z, E, F;
    unsigned short T, S;
    std::string custom, comment;
    float xy_dist; // cache
    
    GCodeCmd(GCodeCmdType type)
        : type(type), X(0), Y(0), Z(0), E(0), F(0), T(-1), S(0), xy_dist(-1) {};
};

}

#endif