mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-23 00:31:11 -06:00
New Slic3r::TriangleMesh::XS class
This commit is contained in:
parent
b33b30b09d
commit
f29faf0548
8 changed files with 116 additions and 76 deletions
15
xs/src/TriangleMesh.hpp
Normal file
15
xs/src/TriangleMesh.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include <admesh/stl.h>
|
||||
|
||||
class TriangleMesh
|
||||
{
|
||||
public:
|
||||
TriangleMesh();
|
||||
~TriangleMesh();
|
||||
void ReadSTLFile(char* input_file);
|
||||
void Repair();
|
||||
void WriteOBJFile(char* output_file);
|
||||
private:
|
||||
stl_file stl;
|
||||
};
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue