2013-07-06 13:26:32 +00:00
|
|
|
#ifndef slic3r_TriangleMesh_hpp_
|
|
|
|
#define slic3r_TriangleMesh_hpp_
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
#include "libslic3r.h"
|
2013-06-24 17:35:49 +00:00
|
|
|
#include <admesh/stl.h>
|
2013-09-07 12:06:09 +00:00
|
|
|
#include <vector>
|
2016-11-26 12:45:58 +00:00
|
|
|
#include <boost/thread.hpp>
|
2014-01-06 17:29:10 +00:00
|
|
|
#include "BoundingBox.hpp"
|
2015-01-06 19:58:07 +00:00
|
|
|
#include "Line.hpp"
|
2013-08-05 17:52:37 +00:00
|
|
|
#include "Point.hpp"
|
2013-09-07 12:06:09 +00:00
|
|
|
#include "Polygon.hpp"
|
2013-11-23 18:41:40 +00:00
|
|
|
#include "ExPolygon.hpp"
|
2013-06-24 17:35:49 +00:00
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-09-09 20:27:58 +00:00
|
|
|
class TriangleMesh;
|
2014-01-15 19:31:38 +00:00
|
|
|
class TriangleMeshSlicer;
|
2013-09-09 20:27:58 +00:00
|
|
|
typedef std::vector<TriangleMesh*> TriangleMeshPtrs;
|
|
|
|
|
2013-06-24 17:35:49 +00:00
|
|
|
class TriangleMesh
|
|
|
|
{
|
2017-02-26 21:17:39 +00:00
|
|
|
public:
|
2013-09-11 18:00:51 +00:00
|
|
|
TriangleMesh();
|
2016-11-27 22:06:45 +00:00
|
|
|
TriangleMesh(const Pointf3s &points, const std::vector<Point3> &facets);
|
2013-09-09 22:09:56 +00:00
|
|
|
TriangleMesh(const TriangleMesh &other);
|
2017-02-26 21:17:39 +00:00
|
|
|
TriangleMesh(TriangleMesh &&other);
|
2017-06-15 13:38:15 +00:00
|
|
|
TriangleMesh& operator=(const TriangleMesh &other);
|
|
|
|
TriangleMesh& operator=(TriangleMesh &&other);
|
2014-05-08 11:33:43 +00:00
|
|
|
void swap(TriangleMesh &other);
|
2013-06-24 17:35:49 +00:00
|
|
|
~TriangleMesh();
|
2017-02-26 21:17:39 +00:00
|
|
|
void ReadSTLFile(const char* input_file);
|
|
|
|
void write_ascii(const char* output_file);
|
|
|
|
void write_binary(const char* output_file);
|
2013-09-09 21:18:33 +00:00
|
|
|
void repair();
|
2017-08-02 14:05:18 +00:00
|
|
|
float volume();
|
|
|
|
void check_topology();
|
|
|
|
bool is_manifold() const;
|
2013-06-24 17:35:49 +00:00
|
|
|
void WriteOBJFile(char* output_file);
|
2013-08-04 19:34:26 +00:00
|
|
|
void scale(float factor);
|
2014-09-21 08:51:36 +00:00
|
|
|
void scale(const Pointf3 &versor);
|
2013-08-05 08:48:38 +00:00
|
|
|
void translate(float x, float y, float z);
|
2015-04-16 19:22:04 +00:00
|
|
|
void rotate(float angle, const Axis &axis);
|
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(const Axis &axis);
|
|
|
|
void mirror_x();
|
|
|
|
void mirror_y();
|
|
|
|
void mirror_z();
|
2018-01-30 08:27:10 +00:00
|
|
|
void transform(const float* matrix3x4);
|
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);
|
2013-09-09 20:27:58 +00:00
|
|
|
TriangleMeshPtrs split() const;
|
2014-08-03 18:33:16 +00:00
|
|
|
void merge(const TriangleMesh &mesh);
|
2015-01-19 17:53:04 +00:00
|
|
|
ExPolygons horizontal_projection() const;
|
|
|
|
Polygon convex_hull();
|
2014-09-21 08:51:36 +00:00
|
|
|
BoundingBoxf3 bounding_box() const;
|
2018-08-15 10:50:06 +00:00
|
|
|
// Returns the bbox of this TriangleMesh transformed by the given matrix
|
|
|
|
BoundingBoxf3 transformed_bounding_box(const std::vector<float>& matrix) const;
|
|
|
|
// Returns the convex hull of this TriangleMesh
|
|
|
|
TriangleMesh convex_hull_3d() const;
|
2014-04-25 15:14:39 +00:00
|
|
|
void reset_repair_stats();
|
2014-08-08 19:48:59 +00:00
|
|
|
bool needed_repair() const;
|
2014-09-21 08:51:36 +00:00
|
|
|
size_t facets_count() const;
|
2017-02-26 21:17:39 +00:00
|
|
|
|
|
|
|
// Returns true, if there are two and more connected patches in the mesh.
|
|
|
|
// Returns false, if one or zero connected patch is in the mesh.
|
|
|
|
bool has_multiple_patches() const;
|
|
|
|
|
|
|
|
// Count disconnected triangle patches.
|
|
|
|
size_t number_of_patches() const;
|
|
|
|
|
2018-08-15 10:50:06 +00:00
|
|
|
mutable stl_file stl;
|
2013-09-09 21:09:56 +00:00
|
|
|
bool repaired;
|
2013-09-13 12:48:40 +00:00
|
|
|
|
2017-02-26 21:17:39 +00:00
|
|
|
private:
|
2013-12-18 15:34:31 +00:00
|
|
|
void require_shared_vertices();
|
2014-01-15 19:31:38 +00:00
|
|
|
friend class TriangleMeshSlicer;
|
2013-06-24 17:35:49 +00:00
|
|
|
};
|
|
|
|
|
2017-02-26 21:17:39 +00:00
|
|
|
enum FacetEdgeType {
|
|
|
|
// A general case, the cutting plane intersect a face at two different edges.
|
|
|
|
feNone,
|
|
|
|
// Two vertices are aligned with the cutting plane, the third vertex is below the cutting plane.
|
|
|
|
feTop,
|
|
|
|
// Two vertices are aligned with the cutting plane, the third vertex is above the cutting plane.
|
|
|
|
feBottom,
|
|
|
|
// All three vertices of a face are aligned with the cutting plane.
|
|
|
|
feHorizontal
|
|
|
|
};
|
2013-09-07 19:08:53 +00:00
|
|
|
|
2018-03-15 16:14:13 +00:00
|
|
|
class IntersectionReference
|
2013-09-07 19:08:53 +00:00
|
|
|
{
|
2017-02-26 21:17:39 +00:00
|
|
|
public:
|
2018-03-15 16:14:13 +00:00
|
|
|
IntersectionReference() : point_id(-1), edge_id(-1) {};
|
|
|
|
IntersectionReference(int point_id, int edge_id) : point_id(point_id), edge_id(edge_id) {}
|
2017-02-26 21:17:39 +00:00
|
|
|
// Where is this intersection point located? On mesh vertex or mesh edge?
|
|
|
|
// Only one of the following will be set, the other will remain set to -1.
|
|
|
|
// Index of the mesh vertex.
|
2013-09-07 19:08:53 +00:00
|
|
|
int point_id;
|
2017-02-26 21:17:39 +00:00
|
|
|
// Index of the mesh edge.
|
2013-09-07 19:08:53 +00:00
|
|
|
int edge_id;
|
|
|
|
};
|
|
|
|
|
2018-03-15 16:14:13 +00:00
|
|
|
class IntersectionPoint : public Point, public IntersectionReference
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
IntersectionPoint() {};
|
|
|
|
IntersectionPoint(int point_id, int edge_id, const Point &pt) : IntersectionReference(point_id, edge_id), Point(pt) {}
|
|
|
|
IntersectionPoint(const IntersectionReference &ir, const Point &pt) : IntersectionReference(ir), Point(pt) {}
|
|
|
|
// Inherits coord_t x, y
|
|
|
|
};
|
|
|
|
|
2015-01-06 19:58:07 +00:00
|
|
|
class IntersectionLine : public Line
|
2013-09-07 19:08:53 +00:00
|
|
|
{
|
2017-02-26 21:17:39 +00:00
|
|
|
public:
|
|
|
|
// Inherits Point a, b
|
|
|
|
// For each line end point, either {a,b}_id or {a,b}edge_a_id is set, the other is left to -1.
|
|
|
|
// Vertex indices of the line end points.
|
2013-09-07 19:08:53 +00:00
|
|
|
int a_id;
|
|
|
|
int b_id;
|
2017-02-26 21:17:39 +00:00
|
|
|
// Source mesh edges of the line end points.
|
2013-09-07 19:08:53 +00:00
|
|
|
int edge_a_id;
|
|
|
|
int edge_b_id;
|
2017-02-26 21:17:39 +00:00
|
|
|
// feNone, feTop, feBottom, feHorizontal
|
2013-09-07 19:08:53 +00:00
|
|
|
FacetEdgeType edge_type;
|
2017-02-26 21:17:39 +00:00
|
|
|
// Used by TriangleMeshSlicer::make_loops() to skip duplicate edges.
|
2013-09-07 22:44:01 +00:00
|
|
|
bool skip;
|
|
|
|
IntersectionLine() : a_id(-1), b_id(-1), edge_a_id(-1), edge_b_id(-1), edge_type(feNone), skip(false) {};
|
2013-09-07 19:08:53 +00:00
|
|
|
};
|
|
|
|
typedef std::vector<IntersectionLine> IntersectionLines;
|
2013-09-07 22:44:01 +00:00
|
|
|
typedef std::vector<IntersectionLine*> IntersectionLinePtrs;
|
2013-09-07 19:08:53 +00:00
|
|
|
|
2014-01-15 19:31:38 +00:00
|
|
|
class TriangleMeshSlicer
|
|
|
|
{
|
2017-02-26 21:17:39 +00:00
|
|
|
public:
|
2014-01-15 19:31:38 +00:00
|
|
|
TriangleMeshSlicer(TriangleMesh* _mesh);
|
2016-11-26 12:45:58 +00:00
|
|
|
void slice(const std::vector<float> &z, std::vector<Polygons>* layers) const;
|
|
|
|
void slice(const std::vector<float> &z, std::vector<ExPolygons>* layers) const;
|
2017-02-26 21:17:39 +00:00
|
|
|
bool slice_facet(float slice_z, const stl_facet &facet, const int facet_idx,
|
|
|
|
const float min_z, const float max_z, IntersectionLine *line_out) const;
|
2016-11-26 12:45:58 +00:00
|
|
|
void cut(float z, TriangleMesh* upper, TriangleMesh* lower) const;
|
2014-01-15 19:31:38 +00:00
|
|
|
|
2017-02-26 21:17:39 +00:00
|
|
|
private:
|
|
|
|
const TriangleMesh *mesh;
|
|
|
|
// Map from a facet to an edge index.
|
|
|
|
std::vector<int> facets_edges;
|
|
|
|
// Scaled copy of this->mesh->stl.v_shared
|
|
|
|
std::vector<stl_vertex> v_scaled_shared;
|
|
|
|
|
2016-11-26 15:07:36 +00:00
|
|
|
void _slice_do(size_t facet_idx, std::vector<IntersectionLines>* lines, boost::mutex* lines_mutex, const std::vector<float> &z) const;
|
2016-11-26 12:45:58 +00:00
|
|
|
void make_loops(std::vector<IntersectionLine> &lines, Polygons* loops) const;
|
|
|
|
void make_expolygons(const Polygons &loops, ExPolygons* slices) const;
|
|
|
|
void make_expolygons_simple(std::vector<IntersectionLine> &lines, ExPolygons* slices) const;
|
|
|
|
void make_expolygons(std::vector<IntersectionLine> &lines, ExPolygons* slices) const;
|
2014-01-15 19:31:38 +00:00
|
|
|
};
|
|
|
|
|
2016-11-27 22:06:45 +00:00
|
|
|
TriangleMesh make_cube(double x, double y, double z);
|
|
|
|
|
2016-11-28 01:15:27 +00:00
|
|
|
// Generate a TriangleMesh of a cylinder
|
|
|
|
TriangleMesh make_cylinder(double r, double h, double fa=(2*PI/360));
|
|
|
|
|
2016-12-05 22:43:55 +00:00
|
|
|
TriangleMesh make_sphere(double rho, double fa=(2*PI/360));
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 13:26:32 +00:00
|
|
|
#endif
|