2013-10-13 13:59:38 +00:00
|
|
|
#ifndef slic3r_SVG_hpp_
|
|
|
|
#define slic3r_SVG_hpp_
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
#include "libslic3r.h"
|
2016-09-13 11:30:00 +00:00
|
|
|
#include "clipper.hpp"
|
2015-01-06 15:26:15 +00:00
|
|
|
#include "ExPolygon.hpp"
|
2013-10-13 13:59:38 +00:00
|
|
|
#include "Line.hpp"
|
2013-10-26 12:41:37 +00:00
|
|
|
#include "TriangleMesh.hpp"
|
2016-09-26 10:45:23 +00:00
|
|
|
#include "Surface.hpp"
|
2013-10-13 13:59:38 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class SVG
|
|
|
|
{
|
2017-01-05 08:10:16 +00:00
|
|
|
public:
|
2013-10-26 12:41:37 +00:00
|
|
|
bool arrows;
|
2015-01-06 15:26:15 +00:00
|
|
|
std::string fill, stroke;
|
2016-03-27 08:53:59 +00:00
|
|
|
Point origin;
|
2016-09-13 11:30:00 +00:00
|
|
|
bool flipY;
|
2016-03-27 08:53:59 +00:00
|
|
|
|
2016-10-20 15:44:46 +00:00
|
|
|
SVG(const char* afilename) :
|
|
|
|
arrows(false), fill("grey"), stroke("black"), filename(afilename), flipY(false)
|
|
|
|
{ open(filename); }
|
|
|
|
SVG(const char* afilename, const BoundingBox &bbox, const coord_t bbox_offset = scale_(1.), bool aflipY = false) :
|
|
|
|
arrows(false), fill("grey"), stroke("black"), filename(afilename), origin(bbox.min - Point(bbox_offset, bbox_offset)), flipY(aflipY)
|
|
|
|
{ open(filename, bbox, bbox_offset, aflipY); }
|
|
|
|
SVG(const std::string &filename) :
|
|
|
|
arrows(false), fill("grey"), stroke("black"), filename(filename), flipY(false)
|
|
|
|
{ open(filename); }
|
|
|
|
SVG(const std::string &filename, const BoundingBox &bbox, const coord_t bbox_offset = scale_(1.), bool aflipY = false) :
|
|
|
|
arrows(false), fill("grey"), stroke("black"), filename(filename), origin(bbox.min - Point(bbox_offset, bbox_offset)), flipY(aflipY)
|
|
|
|
{ open(filename, bbox, bbox_offset, aflipY); }
|
2016-04-15 15:57:38 +00:00
|
|
|
~SVG() { if (f != NULL) Close(); }
|
|
|
|
|
2016-10-20 15:44:46 +00:00
|
|
|
bool open(const char* filename);
|
|
|
|
bool open(const char* filename, const BoundingBox &bbox, const coord_t bbox_offset = scale_(1.), bool flipY = false);
|
|
|
|
bool open(const std::string &filename)
|
|
|
|
{ return open(filename.c_str()); }
|
|
|
|
bool open(const std::string &filename, const BoundingBox &bbox, const coord_t bbox_offset = scale_(1.), bool flipY = false)
|
|
|
|
{ return open(filename.c_str(), bbox, bbox_offset, flipY); }
|
|
|
|
|
2016-09-13 11:30:00 +00:00
|
|
|
void draw(const Line &line, std::string stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ThickLine &line, const std::string &fill, const std::string &stroke, coordf_t stroke_width = 0);
|
|
|
|
void draw(const Lines &lines, std::string stroke = "black", coordf_t stroke_width = 0);
|
2015-01-28 12:00:38 +00:00
|
|
|
void draw(const IntersectionLines &lines, std::string stroke = "black");
|
2016-09-26 10:45:23 +00:00
|
|
|
|
|
|
|
void draw(const ExPolygon &expolygon, std::string fill = "grey", const float fill_opacity=1.f);
|
|
|
|
void draw_outline(const ExPolygon &polygon, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ExPolygons &expolygons, std::string fill = "grey", const float fill_opacity=1.f);
|
|
|
|
void draw_outline(const ExPolygons &polygons, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
|
|
|
|
|
|
|
void draw(const Surface &surface, std::string fill = "grey", const float fill_opacity=1.f);
|
|
|
|
void draw_outline(const Surface &surface, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
|
|
|
void draw(const Surfaces &surfaces, std::string fill = "grey", const float fill_opacity=1.f);
|
|
|
|
void draw_outline(const Surfaces &surfaces, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
|
|
|
void draw(const SurfacesPtr &surfaces, std::string fill = "grey", const float fill_opacity=1.f);
|
|
|
|
void draw_outline(const SurfacesPtr &surfaces, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
|
|
|
|
2015-01-06 19:51:48 +00:00
|
|
|
void draw(const Polygon &polygon, std::string fill = "grey");
|
2016-09-13 11:30:00 +00:00
|
|
|
void draw_outline(const Polygon &polygon, std::string stroke = "black", coordf_t stroke_width = 0);
|
2015-01-28 12:00:38 +00:00
|
|
|
void draw(const Polygons &polygons, std::string fill = "grey");
|
2016-09-13 11:30:00 +00:00
|
|
|
void draw_outline(const Polygons &polygons, std::string stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const Polyline &polyline, std::string stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const Polylines &polylines, std::string stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ThickLines &thicklines, const std::string &fill = "lime", const std::string &stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ThickPolylines &polylines, const std::string &stroke = "black", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ThickPolylines &thickpolylines, const std::string &fill, const std::string &stroke, coordf_t stroke_width);
|
2016-03-27 08:53:59 +00:00
|
|
|
void draw(const Point &point, std::string fill = "black", coord_t radius = 0);
|
|
|
|
void draw(const Points &points, std::string fill = "black", coord_t radius = 0);
|
2016-09-13 11:30:00 +00:00
|
|
|
|
|
|
|
// Support for rendering the ClipperLib paths
|
|
|
|
void draw(const ClipperLib::Path &polygon, double scale, std::string fill = "grey", coordf_t stroke_width = 0);
|
|
|
|
void draw(const ClipperLib::Paths &polygons, double scale, std::string fill = "grey", coordf_t stroke_width = 0);
|
|
|
|
|
2016-09-26 10:45:23 +00:00
|
|
|
void draw_text(const Point &pt, const char *text, const char *color);
|
|
|
|
void draw_legend(const Point &pt, const char *text, const char *color);
|
|
|
|
|
2013-10-13 13:59:38 +00:00
|
|
|
void Close();
|
2015-01-06 15:26:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string filename;
|
|
|
|
FILE* f;
|
|
|
|
|
2016-09-26 10:45:23 +00:00
|
|
|
void path(const std::string &d, bool fill, coordf_t stroke_width, const float fill_opacity);
|
2015-01-06 19:51:48 +00:00
|
|
|
std::string get_path_d(const MultiPoint &mp, bool closed = false) const;
|
2016-09-13 11:30:00 +00:00
|
|
|
std::string get_path_d(const ClipperLib::Path &mp, double scale, bool closed = false) const;
|
2016-09-26 10:45:23 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void export_expolygons(const char *path, const BoundingBox &bbox, const Slic3r::ExPolygons &expolygons, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0);
|
2016-10-21 08:18:01 +00:00
|
|
|
static void export_expolygons(const std::string &path, const BoundingBox &bbox, const Slic3r::ExPolygons &expolygons, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0)
|
|
|
|
{ export_expolygons(path.c_str(), bbox, expolygons, stroke_outer, stroke_holes, stroke_width); }
|
2017-01-05 08:10:16 +00:00
|
|
|
static void export_expolygons(const char *path, const Slic3r::ExPolygons &expolygons, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0)
|
|
|
|
{ export_expolygons(path, get_extents(expolygons), expolygons, stroke_outer, stroke_holes, stroke_width); }
|
|
|
|
static void export_expolygons(const std::string &path, const Slic3r::ExPolygons &expolygons, std::string stroke_outer = "black", std::string stroke_holes = "blue", coordf_t stroke_width = 0)
|
|
|
|
{ export_expolygons(path.c_str(), get_extents(expolygons), expolygons, stroke_outer, stroke_holes, stroke_width); }
|
2013-10-13 13:59:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|