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
2018-02-22GCode Preview - Added Custom extrusion role + extended layers range for ↵Enrico Turri
GCode preview
2018-02-07GCode Preview - Coloring by toolEnrico Turri
2018-02-05GCode Preview - Added feature type for wipe towerEnrico Turri
2018-01-17GCode Preview - Code cleanupEnrico Turri
2018-01-08gcode preview - first installment - wipEnrico Turri
2017-09-11Many warnings fixed (#510)eyal0
Thanks
2017-07-07Fix of "Problem with larger brim overlapping "bubnikv
https://github.com/prusa3d/Slic3r/issues/373
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-02-02Avoid placement of seams on bridging perimeters, if random seam is enabled.bubnikv
https://github.com/alexrj/Slic3r/issues/3526#issuecomment-263125049
2017-01-25ExtrusionEntity - add only valid polylinesbubnikv
2017-01-20Added new file: ExtrusionMultiPath.xspbubnikv
Fixed a missing copy constructor of ExtrusionPath.
2017-01-20Improvement of the move semantics on various objects:bubnikv
The source object will be empty after the move operation.
2017-01-19New extrusion class: ExtrusionMultiPathbubnikv
This is similar to an ExtrusionLoop, but it is open. It may contain multiple chained paths with differing parameters. This allows one to have a hierarchy of paths, where the ExtrusionEntityCollection will be chained by the G-code generator, but ExtrusionMultiPath will not.
2016-12-13Adapted to the new ClipperUtils.hpp interface by @alexrjbubnikv
2016-11-23One step further to the C++ Supports.bubnikv
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-03-19Variable-width thin walls. Yay!Alessandro Ranellucci
2016-03-19Variable-width gap fill. Yay! #2960Alessandro Ranellucci
2015-12-21Force the 'nearest' strategy for starting skirt loopsAlessandro Ranellucci
2015-12-08Remove any Perl related code from libslic3rAlessandro Ranellucci
2015-07-23Finished porting PerimeterGenerator to C++Alessandro Ranellucci
2015-07-07More work for porting PerimeterGenerator to XSAlessandro Ranellucci
2015-07-02Use GCodeWriter for path segments (refactoring)Alessandro Ranellucci
2015-07-02Make tests happyAlessandro 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-25Bugfix: crash when rendering lines with zero length in 3D preview. #2569Alessandro Ranellucci
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-17Fixed testsAlessandro 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-11-08Workaround Clipper changing point coordinates while performing ↵Alessandro Ranellucci
simplify_polygons(), thus causing a crash in Slic3r. #2306
2014-11-08Bugfix: seam_position = random didn't work with a single perimeter. #2179Alessandro Ranellucci
2014-08-03Moved C++ code into new libslic3r directoryAlessandro Ranellucci