123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- %module{Slic3r::XS};
- %{
- #include <xsinit.h>
- #include "libslic3r/Layer.hpp"
- %}
- %name{Slic3r::Layer::Region} class LayerRegion {
- // owned by Layer, no constructor/destructor
- Ref<Layer> layer();
- Ref<PrintRegion> region();
- Ref<SurfaceCollection> slices()
- %code%{ RETVAL = &THIS->slices; %};
- Ref<ExtrusionEntityCollection> thin_fills()
- %code%{ RETVAL = &THIS->thin_fills; %};
- Ref<SurfaceCollection> fill_surfaces()
- %code%{ RETVAL = &THIS->fill_surfaces; %};
- Polygons bridged()
- %code%{ RETVAL = THIS->bridged; %};
- Ref<PolylineCollection> unsupported_bridge_edges()
- %code%{ RETVAL = &THIS->unsupported_bridge_edges; %};
- Ref<ExtrusionEntityCollection> perimeters()
- %code%{ RETVAL = &THIS->perimeters; %};
- Ref<ExtrusionEntityCollection> fills()
- %code%{ RETVAL = &THIS->fills; %};
-
- Clone<Flow> flow(FlowRole role, bool bridge = false, double width = -1)
- %code%{ RETVAL = THIS->flow(role, bridge, width); %};
- void merge_slices();
- void prepare_fill_surfaces();
- void make_perimeters(SurfaceCollection* slices, SurfaceCollection* fill_surfaces)
- %code%{ THIS->make_perimeters(*slices, fill_surfaces); %};
- double infill_area_threshold();
- };
- %name{Slic3r::Layer} class Layer {
- // owned by PrintObject, no constructor/destructor
-
- Ref<Layer> as_layer()
- %code%{ RETVAL = THIS; %};
- int id();
- void set_id(int id);
- Ref<PrintObject> object();
- Ref<Layer> upper_layer()
- %code%{ RETVAL = THIS->upper_layer; %};
- Ref<Layer> lower_layer()
- %code%{ RETVAL = THIS->lower_layer; %};
- bool slicing_errors()
- %code%{ RETVAL = THIS->slicing_errors; %};
- coordf_t slice_z()
- %code%{ RETVAL = THIS->slice_z; %};
- coordf_t print_z()
- %code%{ RETVAL = THIS->print_z; %};
- coordf_t height()
- %code%{ RETVAL = THIS->height; %};
- void set_print_z(coordf_t z)
- %code%{ THIS->print_z = z; %};
- void set_height(coordf_t h)
- %code%{ THIS->height = h; %};
- void set_upper_layer(Layer *layer)
- %code%{ THIS->upper_layer = layer; %};
- void set_lower_layer(Layer *layer)
- %code%{ THIS->lower_layer = layer; %};
- bool has_upper_layer()
- %code%{ RETVAL = (THIS->upper_layer != NULL); %};
- bool has_lower_layer()
- %code%{ RETVAL = (THIS->lower_layer != NULL); %};
-
- size_t region_count();
- Ref<LayerRegion> get_region(int idx);
- Ref<LayerRegion> add_region(PrintRegion* print_region);
- Ref<ExPolygonCollection> slices()
- %code%{ RETVAL = &THIS->slices; %};
-
- int ptr()
- %code%{ RETVAL = (int)(intptr_t)THIS; %};
-
- Ref<SupportLayer> as_support_layer()
- %code%{ RETVAL = dynamic_cast<SupportLayer*>(THIS); %};
-
- void make_slices();
- void merge_slices();
- bool any_internal_region_slice_contains_polyline(Polyline* polyline)
- %code%{ RETVAL = THIS->any_internal_region_slice_contains(*polyline); %};
- bool any_bottom_region_slice_contains_polyline(Polyline* polyline)
- %code%{ RETVAL = THIS->any_bottom_region_slice_contains(*polyline); %};
- void make_perimeters();
- void make_fills();
- };
- %name{Slic3r::Layer::Support} class SupportLayer {
- // owned by PrintObject, no constructor/destructor
-
- Ref<Layer> as_layer()
- %code%{ RETVAL = THIS; %};
-
- Ref<ExPolygonCollection> support_islands()
- %code%{ RETVAL = &THIS->support_islands; %};
- Ref<ExtrusionEntityCollection> support_fills()
- %code%{ RETVAL = &THIS->support_fills; %};
- Ref<ExtrusionEntityCollection> support_interface_fills()
- %code%{ RETVAL = &THIS->support_interface_fills; %};
- // copies of some Layer methods, because the parameter wrapper code
- // gets confused about getting a Layer::Support instead of a Layer
- int id();
- void set_id(int id);
- Ref<PrintObject> object();
- Ref<SupportLayer> upper_layer()
- %code%{ RETVAL = (SupportLayer*)THIS->upper_layer; %};
- Ref<SupportLayer> lower_layer()
- %code%{ RETVAL = (SupportLayer*)THIS->lower_layer; %};
- bool slicing_errors()
- %code%{ RETVAL = THIS->slicing_errors; %};
- coordf_t slice_z()
- %code%{ RETVAL = THIS->slice_z; %};
- coordf_t print_z()
- %code%{ RETVAL = THIS->print_z; %};
- coordf_t height()
- %code%{ RETVAL = THIS->height; %};
- void set_upper_layer(SupportLayer *layer)
- %code%{ THIS->upper_layer = layer; %};
- void set_lower_layer(SupportLayer *layer)
- %code%{ THIS->lower_layer = layer; %};
- bool has_upper_layer()
- %code%{ RETVAL = (THIS->upper_layer != NULL); %};
- bool has_lower_layer()
- %code%{ RETVAL = (THIS->lower_layer != NULL); %};
- size_t region_count();
- Ref<LayerRegion> get_region(int idx);
- Ref<LayerRegion> add_region(PrintRegion* print_region);
- Ref<ExPolygonCollection> slices()
- %code%{ RETVAL = &THIS->slices; %};
-
- bool any_internal_region_slice_contains_polyline(Polyline* polyline)
- %code%{ RETVAL = THIS->any_internal_region_slice_contains(*polyline); %};
- bool any_bottom_region_slice_contains_polyline(Polyline* polyline)
- %code%{ RETVAL = THIS->any_bottom_region_slice_contains(*polyline); %};
- };
|