Compile out functions not used in perl build

This commit is contained in:
Joseph Lenox 2018-07-21 23:13:46 -05:00
parent 61c60d6d32
commit 415e65f5f5

View File

@ -211,10 +211,12 @@ class PrintObject
PrintObject(Print* print, ModelObject* model_object, const BoundingBoxf3 &modobj_bbox);
~PrintObject();
#ifndef SLIC3RXS
/// Outer loop of logic for horizontal shell discovery
void _discover_external_horizontal_shells(LayerRegion* layerm, const size_t& i, const size_t& region_id);
/// Inner loop of logic for horizontal shell discovery
void _discover_neighbor_horizontal_shells(LayerRegion* layerm, const size_t& i, const size_t& region_id, const SurfaceType& type, Polygons& solid, const size_t& solid_layers);
#endif // SLIC3RXS
};