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: cbc546402494c1096aaeda2b5c025f53da0011c7 (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
36
37
38
39
40
41
#ifndef slic3r_SVG_hpp_
#define slic3r_SVG_hpp_

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

namespace Slic3r {

class SVG
{
    public:
    bool arrows;
    std::string fill, stroke;
    
    SVG(const char* filename);
    void draw(const Line &line, std::string stroke = "black");
    void draw(const Lines &lines, std::string stroke = "black");
    void draw(const IntersectionLines &lines, std::string stroke = "black");
    void draw(const ExPolygon &expolygon, std::string fill = "grey");
    void draw(const ExPolygons &expolygons, std::string fill = "grey");
    void draw(const Polygon &polygon, std::string fill = "grey");
    void draw(const Polygons &polygons, std::string fill = "grey");
    void draw(const Polyline &polyline, std::string stroke = "black");
    void draw(const Polylines &polylines, std::string stroke = "black");
    void draw(const Point &point, std::string fill = "black", unsigned int radius = 3);
    void draw(const Points &points, std::string fill = "black", unsigned int radius = 3);
    void Close();
    
    private:
    std::string filename;
    FILE* f;
    
    void path(const std::string &d, bool fill);
    std::string get_path_d(const MultiPoint &mp, bool closed = false) const;
};

}

#endif