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-17Fixed tool ordering for sequential prints.bubnikv
2017-03-24Bugfix: when the Voronoi diagram contained very large coordinates we need to ↵bubnikv
check whether they are greater than our allowed range and consider the Voronoi edges infinite in those cases, in order to prevent overflows. https://github.com/alexrj/Slic3r/issues/3776 https://github.com/alexrj/Slic3r/commit/9ad1360e445cd3043c4dc30ccad64b82b914f952
2017-03-22Fixed some instance of simplify_polygons() invocation.bubnikv
Geometry::deg2rad() made a template. Some methods of Layer made inline. Added a helper template remove_nulls().
2016-11-17Reduced some compiler warnings.bubnikv
2016-11-04Hopefully a fix of https://github.com/prusa3d/Slic3r/issues/11bubnikv
Replaced eval { die } construct with a bool return value indicating success or failure of an automatic arrangement of parts on the print bed. Don't know exactly what is happening here, but throwing a "die" inside a XS function and then catching it inside an eval {} block is suspcious.
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-10-21Defined the +-* operators on Pointf.bubnikv
Removed the deprecated VibrationLimit feature. Added triangle infill. The Prusa3D fork of Slic3r has been marked as "Slic3r Prusa Edition" with menus pointing to the prusa3d/slic3r github release page and Prusa3D drivers downloads page.
2016-10-21Unified the creation of paths of debugging output filesbubnikv
pointing to a predefined output directory.
2016-09-12Meged with release_candidate_1_3bubnikv
2016-05-20More refactoring to medial axis and gap fill, more robustAlessandro Ranellucci
2016-03-27Debugging visualization of the gap fills into a SVG format, if SLIC3R_DEBUG ↵bubnikv
is set.
2016-03-26Rewritten the medial axis algorithm, now more robust (don't just prune MAT ↵Alessandro Ranellucci
from endpoints, but validate all single edges)
2016-03-19Variable-width gap fill. Yay! #2960Alessandro Ranellucci
2015-12-14Fix one regression in arrangeAlessandro Ranellucci
2015-12-11Bugfix: missing include assert.h #3155Alessandro Ranellucci
2015-12-02Make test happyAlessandro Ranellucci
2015-12-02Ported mode Model methods to XSAlessandro Ranellucci
2015-12-01Ported _arrange() and arrange_object() to XSAlessandro Ranellucci
2015-06-15Raise the thickness threshold used for generating thin walls. TODO: don't ↵Alessandro Ranellucci
enforce this at the segment level but consider the average thickness of an entire polyline and compare it to the total length. #2910
2015-05-22Fixes and improvements to thin wall detection. #2829Alessandro Ranellucci
2015-05-13More robust medial axis pruning. #2800Alessandro Ranellucci
2015-04-29Ported Slic3r::Geometry::arrange() to C++/XSAlessandro Ranellucci
2015-01-30Added a new Slic3r::Geometry::simplify_polygons() functionAlessandro Ranellucci
2015-01-19Cleanup of some method signatures and of XS return typesAlessandro Ranellucci
2015-01-03Bugfix: Douglas-Peucker used perpendicular distance instead of shortest ↵Alessandro Ranellucci
distance, thus clipping more than it should. #2474
2014-11-23Refactoring: renamed all contains_*() methods to contains() in C++Alessandro Ranellucci
2014-11-16Ported Slic3r::BridgeDetector to XSAlessandro Ranellucci
2014-11-09Ported Print::validate() to XSAlessandro Ranellucci
2014-11-09Ported some methods including add_model_object() and apply_config() to XSAlessandro Ranellucci
2014-08-03Moved C++ code into new libslic3r directoryAlessandro Ranellucci