~ubuntu-branches/ubuntu/wily/slic3r/wily-proposed

« back to all changes in this revision

Viewing changes to xs/src/SurfaceCollection.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_SurfaceCollection_hpp_
 
2
#define slic3r_SurfaceCollection_hpp_
 
3
 
 
4
#include "Surface.hpp"
 
5
#include <vector>
 
6
 
 
7
namespace Slic3r {
 
8
 
 
9
class SurfaceCollection
 
10
{
 
11
    public:
 
12
    Surfaces surfaces;
 
13
    void simplify(double tolerance);
 
14
    void group(std::vector<SurfacesPtr> *retval);
 
15
};
 
16
 
 
17
}
 
18
 
 
19
#endif