mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-31 00:52:51 +00:00
New Slic3r::Surface::Collection class
This commit is contained in:
26
xs/src/SurfaceCollection.hpp
Normal file
26
xs/src/SurfaceCollection.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef slic3r_SurfaceCollection_hpp_
|
||||
#define slic3r_SurfaceCollection_hpp_
|
||||
|
||||
extern "C" {
|
||||
#include "EXTERN.h"
|
||||
#include "perl.h"
|
||||
#include "XSUB.h"
|
||||
#include "ppport.h"
|
||||
}
|
||||
|
||||
#include "Surface.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
typedef std::vector<Surface> Surfaces;
|
||||
|
||||
class SurfaceCollection
|
||||
{
|
||||
public:
|
||||
Surfaces surfaces;
|
||||
SV* arrayref();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user