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

SVG.hpp « libslic3r « src « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d4cfd56e58e0ac2ea7197e9e8e7ef9d9fea54be (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
#ifndef slic3r_SVG_hpp_
#define slic3r_SVG_hpp_

#include <myinit.h>
#include "Line.hpp"
#include "TriangleMesh.hpp"

namespace Slic3r {

class SVG
{
    private:
    FILE* f;
    float coordinate(long c);
    public:
    bool arrows;
    SVG(const char* filename);
    void AddLine(const Line &line);
    void AddLine(const IntersectionLine &line);
    void Close();
};

}

#endif