Flag for arrows in SVG.cpp

This commit is contained in:
Alessandro Ranellucci 2013-10-26 14:41:37 +02:00
parent 1741adaddf
commit 5988f14b14
2 changed files with 23 additions and 2 deletions

View file

@ -3,6 +3,7 @@
#include <myinit.h>
#include "Line.hpp"
#include "TriangleMesh.hpp"
namespace Slic3r {
@ -10,9 +11,12 @@ 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();
};