2014-01-06 17:29:10 +00:00
# ifndef slic3r_Layer_hpp_
# define slic3r_Layer_hpp_
2015-12-07 23:39:54 +00:00
# include "libslic3r.h"
2014-08-03 17:17:23 +00:00
# include "Flow.hpp"
2014-05-06 08:07:18 +00:00
# include "SurfaceCollection.hpp"
# include "ExtrusionEntityCollection.hpp"
# include "ExPolygonCollection.hpp"
2014-01-06 17:29:10 +00:00
namespace Slic3r {
2014-05-06 08:07:18 +00:00
class Layer ;
2021-05-21 15:57:37 +00:00
using LayerPtrs = std : : vector < Layer * > ;
class LayerRegion ;
using LayerRegionPtrs = std : : vector < LayerRegion * > ;
2014-05-06 08:07:18 +00:00
class PrintRegion ;
class PrintObject ;
2020-09-18 08:53:50 +00:00
namespace FillAdaptive {
2020-09-02 20:53:10 +00:00
struct Octree ;
} ;
2014-05-06 08:07:18 +00:00
class LayerRegion
{
2017-03-22 14:35:09 +00:00
public :
2018-09-11 12:04:47 +00:00
Layer * layer ( ) { return m_layer ; }
const Layer * layer ( ) const { return m_layer ; }
2021-05-05 16:13:58 +00:00
const PrintRegion & region ( ) const { return * m_region ; }
2014-05-06 08:07:18 +00:00
// collection of surfaces generated by slicing the original geometry
// divided by type top/bottom/internal
2018-09-11 12:04:47 +00:00
SurfaceCollection slices ;
2020-12-11 11:21:07 +00:00
// Backed up slices before they are split into top/bottom/internal.
// Only backed up for multi-region layers or layers with elephant foot compensation.
//FIXME Review whether not to simplify the code by keeping the raw_slices all the time.
ExPolygons raw_slices ;
2014-05-06 08:07:18 +00:00
// collection of extrusion paths/loops filling gaps
2017-05-25 20:27:53 +00:00
// These fills are generated by the perimeter generator.
// They are not printed on their own, but they are copied to this->fills during infill generation.
2018-09-11 12:04:47 +00:00
ExtrusionEntityCollection thin_fills ;
2014-05-06 08:07:18 +00:00
2016-11-17 22:22:59 +00:00
// Unspecified fill polygons, used for overhang detection ("ensure vertical wall thickness feature")
// and for re-starting of infills.
2018-09-11 12:04:47 +00:00
ExPolygons fill_expolygons ;
2014-05-06 08:07:18 +00:00
// collection of surfaces for infill generation
2018-09-11 12:04:47 +00:00
SurfaceCollection fill_surfaces ;
2014-05-06 08:07:18 +00:00
// collection of expolygons representing the bridged areas (thus not
// needing support material)
2021-02-09 17:36:28 +00:00
// Polygons bridged;
2014-05-06 08:07:18 +00:00
// collection of polylines representing the unsupported bridge edges
2019-09-27 16:17:21 +00:00
Polylines unsupported_bridge_edges ;
2014-05-06 08:07:18 +00:00
// ordered collection of extrusion paths/loops to build all perimeters
2015-04-12 18:16:27 +00:00
// (this collection contains only ExtrusionEntityCollection objects)
2018-09-11 12:04:47 +00:00
ExtrusionEntityCollection perimeters ;
2014-05-06 08:07:18 +00:00
// ordered collection of extrusion paths to fill surfaces
2014-12-16 23:34:00 +00:00
// (this collection contains only ExtrusionEntityCollection objects)
2018-09-11 12:04:47 +00:00
ExtrusionEntityCollection fills ;
2014-08-03 17:17:23 +00:00
2021-03-08 12:44:00 +00:00
Flow flow ( FlowRole role ) const ;
2021-03-09 11:30:31 +00:00
Flow flow ( FlowRole role , double layer_height ) const ;
2021-03-08 12:44:00 +00:00
Flow bridging_flow ( FlowRole role ) const ;
2018-09-11 12:04:47 +00:00
void slices_to_fill_surfaces_clipped ( ) ;
void prepare_fill_surfaces ( ) ;
void make_perimeters ( const SurfaceCollection & slices , SurfaceCollection * fill_surfaces ) ;
2019-09-06 13:03:49 +00:00
void process_external_surfaces ( const Layer * lower_layer , const Polygons * lower_layer_covered ) ;
2019-03-05 10:54:04 +00:00
double infill_area_threshold ( ) const ;
// Trim surfaces by trimming polygons. Used by the elephant foot compensation at the 1st layer.
void trim_surfaces ( const Polygons & trimming_polygons ) ;
// Single elephant foot compensation step, used by the elephant foor compensation at the 1st layer.
// Trim surfaces by trimming polygons (shrunk by an elephant foot compensation step), but don't shrink narrow parts so much that no perimeter would fit.
void elephant_foot_compensation_step ( const float elephant_foot_compensation_perimeter_step , const Polygons & trimming_polygons ) ;
2016-09-26 11:44:23 +00:00
2018-09-11 12:04:47 +00:00
void export_region_slices_to_svg ( const char * path ) const ;
void export_region_fill_surfaces_to_svg ( const char * path ) const ;
2016-09-26 11:44:23 +00:00
// Export to "out/LayerRegion-name-%d.svg" with an increasing index with every export.
2018-09-11 12:04:47 +00:00
void export_region_slices_to_svg_debug ( const char * name ) const ;
void export_region_fill_surfaces_to_svg_debug ( const char * name ) const ;
2016-09-26 11:44:23 +00:00
2017-07-27 08:39:43 +00:00
// Is there any valid extrusion assigned to this LayerRegion?
2018-09-11 12:04:47 +00:00
bool has_extrusions ( ) const { return ! this - > perimeters . entities . empty ( ) | | ! this - > fills . entities . empty ( ) ; }
2017-07-27 08:39:43 +00:00
2018-09-11 12:04:47 +00:00
protected :
friend class Layer ;
2021-05-24 14:55:34 +00:00
friend class PrintObject ;
2014-05-19 20:38:10 +00:00
2021-05-06 13:08:57 +00:00
LayerRegion ( Layer * layer , const PrintRegion * region ) : m_layer ( layer ) , m_region ( region ) { }
2017-03-07 16:43:43 +00:00
~ LayerRegion ( ) { }
2018-09-11 12:04:47 +00:00
private :
2021-05-06 13:08:57 +00:00
Layer * m_layer ;
const PrintRegion * m_region ;
2014-05-06 08:07:18 +00:00
} ;
2018-09-11 12:04:47 +00:00
class Layer
{
2016-09-26 11:44:23 +00:00
public :
2021-03-19 10:21:29 +00:00
// Sequential index of this layer in PrintObject::m_layers, offsetted by the number of raft layers.
2018-09-11 12:04:47 +00:00
size_t id ( ) const { return m_id ; }
void set_id ( size_t id ) { m_id = id ; }
PrintObject * object ( ) { return m_object ; }
const PrintObject * object ( ) const { return m_object ; }
Layer * upper_layer ;
Layer * lower_layer ;
bool slicing_errors ;
coordf_t slice_z ; // Z used for slicing in unscaled coordinates
coordf_t print_z ; // Z used for printing in unscaled coordinates
coordf_t height ; // layer height in unscaled coordinates
2020-02-05 15:53:26 +00:00
coordf_t bottom_z ( ) const { return this - > print_z - this - > height ; }
2014-05-06 08:07:18 +00:00
2020-01-03 13:05:56 +00:00
// Collection of expolygons generated by slicing the possibly multiple meshes of the source geometry
// (with possibly differing extruder ID and slicing parameters) and merged.
2021-03-19 10:21:29 +00:00
// For the first layer, if the Elephant foot compensation is applied, this lslice is uncompensated, therefore
2020-01-03 13:05:56 +00:00
// it includes the Elephant foot effect, thus it corresponds to the shape of the printed 1st layer.
// These lslices aka islands are chained by the shortest traverse distance and this traversal
// order will be applied by the G-code generator to the extrusions fitting into these lslices.
// These lslices are also used to detect overhangs and overlaps between successive layers, therefore it is important
// that the 1st lslice is not compensated by the Elephant foot compensation algorithm.
ExPolygons lslices ;
std : : vector < BoundingBox > lslices_bboxes ;
2014-05-06 08:07:18 +00:00
2018-09-11 12:04:47 +00:00
size_t region_count ( ) const { return m_regions . size ( ) ; }
2021-05-05 16:13:58 +00:00
const LayerRegion * get_region ( int idx ) const { return m_regions [ idx ] ; }
2018-09-11 12:04:47 +00:00
LayerRegion * get_region ( int idx ) { return m_regions [ idx ] ; }
2021-05-06 13:08:57 +00:00
LayerRegion * add_region ( const PrintRegion * print_region ) ;
2018-09-11 12:04:47 +00:00
const LayerRegionPtrs & regions ( ) const { return m_regions ; }
2018-12-14 16:17:51 +00:00
// Test whether whether there are any slices assigned to this layer.
bool empty ( ) const ;
2018-09-11 12:04:47 +00:00
void make_slices ( ) ;
2020-12-11 11:21:07 +00:00
// Backup and restore raw sliced regions if needed.
//FIXME Review whether not to simplify the code by keeping the raw_slices all the time.
void backup_untyped_slices ( ) ;
void restore_untyped_slices ( ) ;
2021-12-08 08:45:48 +00:00
// To improve robustness of detect_surfaces_type() when reslicing (working with typed slices), see GH issue #7442.
void restore_untyped_slices_no_extra_perimeters ( ) ;
2019-03-05 10:54:04 +00:00
// Slices merged into islands, to be used by the elephant foot compensation to trim the individual surfaces with the shrunk merged slices.
ExPolygons merged ( float offset ) const ;
2017-07-10 11:15:36 +00:00
template < class T > bool any_internal_region_slice_contains ( const T & item ) const {
2018-09-11 12:04:47 +00:00
for ( const LayerRegion * layerm : m_regions ) if ( layerm - > slices . any_internal_contains ( item ) ) return true ;
2017-07-10 11:15:36 +00:00
return false ;
}
template < class T > bool any_bottom_region_slice_contains ( const T & item ) const {
2018-09-11 12:04:47 +00:00
for ( const LayerRegion * layerm : m_regions ) if ( layerm - > slices . any_bottom_contains ( item ) ) return true ;
2017-07-10 11:15:36 +00:00
return false ;
}
2018-09-11 12:04:47 +00:00
void make_perimeters ( ) ;
2021-12-01 18:24:23 +00:00
// Phony version of make_fills() without parameters for Perl integration only.
void make_fills ( ) { this - > make_fills ( nullptr , nullptr ) ; }
2020-09-18 08:53:50 +00:00
void make_fills ( FillAdaptive : : Octree * adaptive_fill_octree , FillAdaptive : : Octree * support_fill_octree ) ;
2020-04-14 09:53:28 +00:00
void make_ironing ( ) ;
2016-09-26 11:44:23 +00:00
2018-09-11 12:04:47 +00:00
void export_region_slices_to_svg ( const char * path ) const ;
void export_region_fill_surfaces_to_svg ( const char * path ) const ;
2016-09-26 11:44:23 +00:00
// Export to "out/LayerRegion-name-%d.svg" with an increasing index with every export.
2018-09-11 12:04:47 +00:00
void export_region_slices_to_svg_debug ( const char * name ) const ;
void export_region_fill_surfaces_to_svg_debug ( const char * name ) const ;
2017-07-27 08:39:43 +00:00
// Is there any valid extrusion assigned to this LayerRegion?
2018-09-11 12:04:47 +00:00
virtual bool has_extrusions ( ) const { for ( auto layerm : m_regions ) if ( layerm - > has_extrusions ( ) ) return true ; return false ; }
2017-07-27 08:39:43 +00:00
2016-09-26 11:44:23 +00:00
protected :
2018-09-11 12:04:47 +00:00
friend class PrintObject ;
2021-05-21 15:57:37 +00:00
friend std : : vector < Layer * > new_layers ( PrintObject * , const std : : vector < coordf_t > & ) ;
friend std : : string fix_slicing_errors ( LayerPtrs & , const std : : function < void ( ) > & ) ;
2014-05-19 20:38:10 +00:00
2017-05-30 16:33:17 +00:00
Layer ( size_t id , PrintObject * object , coordf_t height , coordf_t print_z , coordf_t slice_z ) :
upper_layer ( nullptr ) , lower_layer ( nullptr ) , slicing_errors ( false ) ,
slice_z ( slice_z ) , print_z ( print_z ) , height ( height ) ,
2018-09-11 12:04:47 +00:00
m_id ( id ) , m_object ( object ) { }
2014-05-06 08:07:18 +00:00
virtual ~ Layer ( ) ;
2018-09-11 12:04:47 +00:00
private :
2021-03-19 10:21:29 +00:00
// Sequential index of layer, 0-based, offsetted by number of raft layers.
2018-09-11 12:04:47 +00:00
size_t m_id ;
PrintObject * m_object ;
LayerRegionPtrs m_regions ;
} ;
2014-05-06 08:07:18 +00:00
2018-09-11 12:04:47 +00:00
class SupportLayer : public Layer
{
2016-10-06 19:41:52 +00:00
public :
// Polygons covered by the supports: base, interface and contact areas.
2020-06-03 12:49:40 +00:00
// Used to suppress retraction if moving for a support extrusion over these support_islands.
2018-09-11 12:04:47 +00:00
ExPolygonCollection support_islands ;
2017-04-07 15:37:30 +00:00
// Extrusion paths for the support base and for the support interface and contacts.
2018-09-11 12:04:47 +00:00
ExtrusionEntityCollection support_fills ;
2014-05-06 08:07:18 +00:00
2021-10-14 11:55:52 +00:00
2017-07-27 08:39:43 +00:00
// Is there any valid extrusion assigned to this LayerRegion?
2018-09-11 12:04:47 +00:00
virtual bool has_extrusions ( ) const { return ! support_fills . empty ( ) ; }
2021-10-14 11:55:52 +00:00
// Zero based index of an interface layer, used for alternating direction of interface / contact layers.
size_t interface_id ( ) const { return m_interface_id ; }
2018-09-11 12:04:47 +00:00
protected :
friend class PrintObject ;
2017-07-27 08:39:43 +00:00
2017-12-11 16:19:55 +00:00
// The constructor has been made public to be able to insert additional support layers for the skirt or a wipe tower
// between the raft and the object first layer.
2021-10-14 11:55:52 +00:00
SupportLayer ( size_t id , size_t interface_id , PrintObject * object , coordf_t height , coordf_t print_z , coordf_t slice_z ) :
Layer ( id , object , height , print_z , slice_z ) , m_interface_id ( interface_id ) { }
2021-05-03 09:39:53 +00:00
virtual ~ SupportLayer ( ) = default ;
2021-10-14 11:55:52 +00:00
size_t m_interface_id ;
2014-05-06 08:07:18 +00:00
} ;
2021-06-20 13:21:12 +00:00
template < typename LayerContainer >
inline std : : vector < float > zs_from_layers ( const LayerContainer & layers )
{
std : : vector < float > zs ;
zs . reserve ( layers . size ( ) ) ;
for ( const Layer * l : layers )
zs . emplace_back ( ( float ) l - > slice_z ) ;
return zs ;
}
2021-07-29 08:21:50 +00:00
extern BoundingBox get_extents ( const LayerRegion & layer_region ) ;
extern BoundingBox get_extents ( const LayerRegionPtrs & layer_regions ) ;
2014-01-06 17:29:10 +00:00
}
# endif