2013-06-23 13:33:07 +00:00
|
|
|
%module{Slic3r::XS};
|
2013-06-24 17:35:49 +00:00
|
|
|
|
|
|
|
%{
|
2015-12-07 23:39:54 +00:00
|
|
|
#include <xsinit.h>
|
2014-08-03 17:42:29 +00:00
|
|
|
#include "libslic3r/TriangleMesh.hpp"
|
2021-05-17 18:25:59 +00:00
|
|
|
#include "libslic3r/TriangleMeshSlicer.hpp"
|
2013-06-24 17:35:49 +00:00
|
|
|
%}
|
|
|
|
|
2013-09-09 22:40:46 +00:00
|
|
|
%name{Slic3r::TriangleMesh} class TriangleMesh {
|
2013-06-24 17:35:49 +00:00
|
|
|
TriangleMesh();
|
|
|
|
~TriangleMesh();
|
2014-04-27 17:18:53 +00:00
|
|
|
Clone<TriangleMesh> clone()
|
|
|
|
%code{% RETVAL = THIS; %};
|
2013-09-11 07:49:28 +00:00
|
|
|
void write_ascii(char* output_file);
|
|
|
|
void write_binary(char* output_file);
|
2013-08-04 19:34:26 +00:00
|
|
|
void scale(float factor);
|
2018-08-21 15:43:05 +00:00
|
|
|
void scale_xyz(Vec3d* versor)
|
2021-09-20 15:12:22 +00:00
|
|
|
%code{% THIS->scale(versor->cast<float>()); %};
|
2013-08-05 08:48:38 +00:00
|
|
|
void translate(float x, float y, float z);
|
2014-04-25 15:50:03 +00:00
|
|
|
void rotate_x(float angle);
|
|
|
|
void rotate_y(float angle);
|
|
|
|
void rotate_z(float angle);
|
2015-11-04 22:11:30 +00:00
|
|
|
void mirror_x();
|
|
|
|
void mirror_y();
|
|
|
|
void mirror_z();
|
2013-08-05 17:22:33 +00:00
|
|
|
void align_to_origin();
|
2013-08-05 17:52:37 +00:00
|
|
|
void rotate(double angle, Point* center);
|
2014-08-03 18:33:16 +00:00
|
|
|
void merge(TriangleMesh* mesh)
|
|
|
|
%code{% THIS->merge(*mesh); %};
|
2015-01-19 17:53:04 +00:00
|
|
|
Clone<Polygon> convex_hull();
|
2018-08-21 15:43:05 +00:00
|
|
|
Clone<Vec3d> center()
|
2015-01-19 17:53:04 +00:00
|
|
|
%code{% RETVAL = THIS->bounding_box().center(); %};
|
2014-09-21 08:51:36 +00:00
|
|
|
int facets_count();
|
2016-11-28 08:46:43 +00:00
|
|
|
|
2013-07-13 16:51:49 +00:00
|
|
|
%{
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
void
|
|
|
|
TriangleMesh::ReadFromPerl(vertices, facets)
|
|
|
|
SV* vertices
|
|
|
|
SV* facets
|
|
|
|
CODE:
|
2021-09-20 15:12:22 +00:00
|
|
|
std::vector<Slic3r::Vec3f> out_vertices;
|
|
|
|
{
|
|
|
|
AV* vertices_av = (AV*)SvRV(vertices);
|
|
|
|
int number_of_vertices = av_len(vertices_av) + 1;
|
|
|
|
out_vertices.reserve(number_of_vertices);
|
|
|
|
for (int i = 0; i < number_of_vertices; ++ i) {
|
|
|
|
AV* vertex_av = (AV*)SvRV(*av_fetch(vertices_av, i, 0));
|
|
|
|
out_vertices.push_back(Slic3r::Vec3f(SvNV(*av_fetch(vertex_av, 0, 0)), SvNV(*av_fetch(vertex_av, 1, 0)), SvNV(*av_fetch(vertex_av, 2, 0))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::vector<Slic3r::Vec3i> out_indices;
|
|
|
|
{
|
|
|
|
AV* facets_av = (AV*)SvRV(facets);
|
|
|
|
int number_of_facets = av_len(facets_av) + 1;
|
|
|
|
out_indices.reserve(number_of_facets);
|
|
|
|
for (int i = 0; i < number_of_facets; ++ i) {
|
|
|
|
AV* facet_av = (AV*)SvRV(*av_fetch(facets_av, i, 0));
|
|
|
|
out_indices.push_back(Slic3r::Vec3i(SvIV(*av_fetch(facet_av, 0, 0)), SvIV(*av_fetch(facet_av, 1, 0)), SvIV(*av_fetch(facet_av, 2, 0))));
|
2015-12-07 23:39:54 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-20 15:12:22 +00:00
|
|
|
*THIS = TriangleMesh(std::move(out_vertices), std::move(out_indices));
|
2015-12-07 23:39:54 +00:00
|
|
|
|
2013-08-04 19:23:27 +00:00
|
|
|
SV*
|
|
|
|
TriangleMesh::vertices()
|
|
|
|
CODE:
|
|
|
|
// vertices
|
|
|
|
AV* vertices = newAV();
|
2019-06-10 16:30:54 +00:00
|
|
|
av_extend(vertices, THIS->its.vertices.size());
|
|
|
|
for (size_t i = 0; i < THIS->its.vertices.size(); i++) {
|
2013-08-04 19:23:27 +00:00
|
|
|
AV* vertex = newAV();
|
|
|
|
av_store(vertices, i, newRV_noinc((SV*)vertex));
|
|
|
|
av_extend(vertex, 2);
|
2019-06-10 16:30:54 +00:00
|
|
|
av_store(vertex, 0, newSVnv(THIS->its.vertices[i](0)));
|
|
|
|
av_store(vertex, 1, newSVnv(THIS->its.vertices[i](1)));
|
|
|
|
av_store(vertex, 2, newSVnv(THIS->its.vertices[i](2)));
|
2013-08-04 19:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RETVAL = newRV_noinc((SV*)vertices);
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
|
|
|
SV*
|
|
|
|
TriangleMesh::facets()
|
|
|
|
CODE:
|
|
|
|
// facets
|
|
|
|
AV* facets = newAV();
|
2021-09-20 15:12:22 +00:00
|
|
|
av_extend(facets, THIS->facets_count());
|
|
|
|
for (int i = 0; i < THIS->facets_count(); i++) {
|
2013-08-04 19:23:27 +00:00
|
|
|
AV* facet = newAV();
|
|
|
|
av_store(facets, i, newRV_noinc((SV*)facet));
|
|
|
|
av_extend(facet, 2);
|
2019-06-10 19:14:58 +00:00
|
|
|
av_store(facet, 0, newSVnv(THIS->its.indices[i][0]));
|
|
|
|
av_store(facet, 1, newSVnv(THIS->its.indices[i][1]));
|
|
|
|
av_store(facet, 2, newSVnv(THIS->its.indices[i][2]));
|
2013-08-04 19:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RETVAL = newRV_noinc((SV*)facets);
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
2013-08-05 17:39:10 +00:00
|
|
|
SV*
|
|
|
|
TriangleMesh::size()
|
|
|
|
CODE:
|
|
|
|
AV* size = newAV();
|
|
|
|
av_extend(size, 2);
|
2021-09-20 15:12:22 +00:00
|
|
|
av_store(size, 0, newSVnv(THIS->stats().size(0)));
|
|
|
|
av_store(size, 1, newSVnv(THIS->stats().size(1)));
|
|
|
|
av_store(size, 2, newSVnv(THIS->stats().size(2)));
|
2013-08-05 17:39:10 +00:00
|
|
|
RETVAL = newRV_noinc((SV*)size);
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
2013-07-13 16:51:49 +00:00
|
|
|
%}
|
2013-06-24 17:35:49 +00:00
|
|
|
};
|