First version of SLA support points generation

This commit is contained in:
Lukas Matena 2018-12-07 14:10:16 +01:00
parent c23c09c453
commit 0afe2aec1e
10 changed files with 288 additions and 9 deletions

View file

@ -35,7 +35,7 @@ public:
void repair();
float volume();
void check_topology();
bool is_manifold() const { return this->stl.stats.connected_facets_3_edge == this->stl.stats.number_of_facets; }
bool is_manifold() const { return this->stl.stats.connected_facets_3_edge == (int)this->stl.stats.number_of_facets; }
void WriteOBJFile(char* output_file);
void scale(float factor);
void scale(const Vec3d &versor);