~ubuntu-branches/ubuntu/utopic/slic3r/utopic

« back to all changes in this revision

Viewing changes to xs/src/SVG.hpp

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-06-17 01:27:26 UTC
  • Revision ID: package-import@ubuntu.com-20140617012726-2wrs4zdo251nr4vg
Tags: upstream-1.1.4+dfsg
ImportĀ upstreamĀ versionĀ 1.1.4+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef slic3r_SVG_hpp_
 
2
#define slic3r_SVG_hpp_
 
3
 
 
4
#include <myinit.h>
 
5
#include "Line.hpp"
 
6
#include "TriangleMesh.hpp"
 
7
 
 
8
namespace Slic3r {
 
9
 
 
10
class SVG
 
11
{
 
12
    private:
 
13
    FILE* f;
 
14
    float coordinate(long c);
 
15
    public:
 
16
    bool arrows;
 
17
    SVG(const char* filename);
 
18
    void AddLine(const Line &line);
 
19
    void AddLine(const IntersectionLine &line);
 
20
    void Close();
 
21
};
 
22
 
 
23
}
 
24
 
 
25
#endif