mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-23 00:31:11 -06:00
New Slic3r::TriangleMesh::XS->ToPerl() method
This commit is contained in:
parent
ecdc2f077b
commit
d30b4f0310
4 changed files with 49 additions and 1 deletions
|
@ -1,5 +1,12 @@
|
|||
#include <admesh/stl.h>
|
||||
|
||||
extern "C" {
|
||||
#include "EXTERN.h"
|
||||
#include "perl.h"
|
||||
#include "XSUB.h"
|
||||
#include "ppport.h"
|
||||
}
|
||||
|
||||
class TriangleMesh
|
||||
{
|
||||
public:
|
||||
|
@ -8,6 +15,7 @@ class TriangleMesh
|
|||
void ReadSTLFile(char* input_file);
|
||||
void Repair();
|
||||
void WriteOBJFile(char* output_file);
|
||||
AV* ToPerl();
|
||||
private:
|
||||
stl_file stl;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue