Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-03Ported the G-code generator from Perl to C++.bubnikv
Removed GCode.pm Removed the Perl bindigns for AvoidCrossingPerimeters, OozePrevention, SpiralVase, Wipe Changed the std::set of extruder IDs to vector of IDs. Removed some MSVC compiler warnings, removed obnoxious compiler warnings when compiling the Perl bindings.
2017-04-07Merged support_fills with support_interface_fills.bubnikv
When extruding supports, the support is interleaved with interface if possible (when extruded with the same extruder). Otherwise the base is extruded first.
2017-01-20Improvement of the move semantics on various objects:bubnikv
The source object will be empty after the move operation.
2017-01-19Move semantics for ExtrusionEntityCollectionbubnikv
2016-11-04Method ExtrusionEntity::polygons_covered() and derived were splitbubnikv
into polygons_covered_by_width() and polygons_covered_by_spacing(). Bugfix of ExtrusionLoop::split_at(const Point &point), where the split ExtrusionPaths were not initialised correctly.
2016-11-03ExtrusionEntity and derived classes: Documented, short methods madebubnikv
inline for efficiency and readability, grow() renamed to polygons_covered().
2016-11-02Rewrote Fill2.pm to C++, deleted Perl infills for good.bubnikv
Removed dependency on Perl Math::PlanePath module. Fixed compilation with Visual Studio and SLIC3R_DEBUG: Visual Studio older than 2015 does not support the prinf type specifier %zu. Use %Iu instead. C++11 move semantics enabled.
2016-03-19Variable-width gap fill. Yay! #2960Alessandro Ranellucci
2015-12-08Remove any Perl related code from libslic3rAlessandro Ranellucci
2015-11-04Fix: Initializer list, right initialisation orderntfshard
2015-07-23Finished porting PerimeterGenerator to C++Alessandro Ranellucci
2015-07-07More work for porting PerimeterGenerator to XSAlessandro Ranellucci
2015-05-31New experimental autospeed feature. #2810Alessandro Ranellucci
2015-04-12Fixed regression introduced by the recent PerimeterGenerator refactoring ↵Alessandro Ranellucci
causing spiral vase not to be correctly skipped on multi-loop layers. Includes regression test. #2761
2015-03-09Restore correct ordering of concentric infill loops, preventing them from ↵Alessandro Ranellucci
being reordered during G-code generation
2015-01-15Initial work for 3D rendering of toolpathsAlessandro Ranellucci
2015-01-08The inwards move after an external loop was still randomly generated ↵Alessandro Ranellucci
outwards in some cases. Perimeters are now generated with a distinct iterator for each slice. Nested islands are also correctly supported too. Various regression tests included. #2253
2014-12-17Removed useless thing added in e79aa2e81c3087d44c46d0fcb65cd81a42f0585dAlessandro Ranellucci
2014-12-17New --solid-infill-extruder option. Includes a refactoring of the strategy ↵Alessandro Ranellucci
used to order layer extrusions according to their extruder and island; toolchanges and travel moves should be more optimized now. #618
2014-08-03Moved C++ code into new libslic3r directoryAlessandro Ranellucci