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

« back to all changes in this revision

Viewing changes to xs/src/PolylineCollection.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_PolylineCollection_hpp_
 
2
#define slic3r_PolylineCollection_hpp_
 
3
 
 
4
#include <myinit.h>
 
5
#include "Polyline.hpp"
 
6
 
 
7
namespace Slic3r {
 
8
 
 
9
class PolylineCollection
 
10
{
 
11
    public:
 
12
    Polylines polylines;
 
13
    void chained_path(PolylineCollection* retval, bool no_reverse = false) const;
 
14
    void chained_path_from(Point start_near, PolylineCollection* retval, bool no_reverse = false) const;
 
15
    Point leftmost_point() const;
 
16
};
 
17
 
 
18
}
 
19
 
 
20
#endif