A fork of PrusaSlicer with non-planar slicing. Based on https://github.com/DrEricEbert/Slic3r_NonPlanar_Slicing
Go to file
bubnikv b4d0d9610e Various changes in handling of profile compatiblilities
and the "show incompatible profiles" option.

It was not able to select the incompatible Print profile, which is
possible now.
(see Cannot select incompatible printer profile #3715)

When the Printer profile derived from the Prusa3D system profile was
active or a system Prusa3D profile was active, and when the Print profile
with the removed "inherits" field was active (or any other profile
derived from the "-- default --" profile was active), then the filament
selector offered just the profiles with the removed "inherits" field
(or any other profile derived from the "-- default--") profile.
This behavior has been now changed, so that in this scenario the Filament selector
will offer the Prusa3D vendor profiles compatible with the active Print
and Printer profile as well as the user profiles.

Slicer was also changed to keep an incompatible preset selected
at its respective tab if its respective "Red flag" is enabled.
For example, if an incompatible Print preset is selected and a Printer
profile is switched to another one which is not compatible with the active
Print preset that was red already, the active Print preset is
not switched if the Print "Red flag" is active. However, if the Print profile
was compatible before the Printer profile is switched and now the Print
profile becomes incompatible, another compatible Print profile is selected.

A likely bug in wxWidgets was worked around when switching a Print preset
on Plater, if the last item in the Print preset was active and incompatible,
and another Print preset was selected by the user. On Windows, an CBN_EDITCHANGE
is sent just after combo box selection change event and the CBN_EDITCHANGE
holds an index of the combo box item, which will be removed by the 1st event,
therefore leading to an assert in wxWidgets on CBN_EDITCHANGE. The workaround
is to disable processing of CBN_EDITCHANGE on Windows for the Plater
preset selection combo boxes.
2020-02-27 11:44:12 +01:00
.github Fixed the github issue template to indicate that 3MFs cannot be attached 2019-06-03 16:01:02 +02:00
cmake Add check for cereal library in CMake 2020-02-07 11:07:22 +01:00
deps Use CheckAtomic differently 2020-01-23 17:20:02 +01:00
doc Added a step by step guide 2020-01-02 06:03:44 -05:00
lib Reworked the Perl unit / integration tests to use the same Print 2019-06-20 20:23:05 +02:00
resources eject sd card/usb icon 2020-02-26 15:02:43 +01:00
sandboxes Handle CGAL exceptions and add tests for mesh boolean operations 2020-02-05 17:40:05 +01:00
src Various changes in handling of profile compatiblilities 2020-02-27 11:44:12 +01:00
t Fixed unit tests broken with the previous commit (Spiral Vase fix). 2020-02-09 09:43:15 +01:00
tests Do EFC for the first faded layers of SLA, interpolate efc parameters 2020-02-18 17:39:36 +01:00
xs Fix perl tests when called via CTest 2020-02-18 15:47:34 +01:00
.clang-format Merge branch 'master' into tm_arrange_selection 2019-07-17 17:25:31 +02:00
.gitignore
Build.PL Support for Visual Studio 2019 Community 2019-06-06 11:40:35 +02:00
CMakeLists.txt Add check for cereal library in CMake 2020-02-07 11:07:22 +01:00
LICENSE Added the AGPL v3 license file 2017-10-21 16:09:25 +02:00
PrusaSlicer.sublime-project Further renaming to PrusaSlicer 2019-05-13 15:14:33 +02:00
README.md Fixed the localized PrusaSlicer change log link. 2019-05-20 15:32:43 +02:00
version.inc Bumped up version to 2.2.0-beta 2020-02-21 18:44:53 +01:00

PrusaSlicer logo

PrusaSlicer

You may want to check the PrusaSlicer project page. Prebuilt Windows, OSX and Linux binaries are available through the git releases page or from the Prusa3D downloads page.

PrusaSlicer takes 3D models (STL, OBJ, AMF) and converts them into G-code instructions for FFF printers or PNG layers for mSLA 3D printers. It's compatible with any modern printer based on the RepRap toolchain, including all those based on the Marlin, Prusa, Sprinter and Repetier firmware. It also works with Mach3, LinuxCNC and Machinekit controllers.

PrusaSlicer is based on Slic3r by Alessandro Ranelucci and the RepRap community.

See the project homepage and the documentation directory for more information.

What language is it written in?

All user facing code is written in C++, and some legacy code as well as unit tests are written in Perl. Perl is not required for either development or use of PrusaSlicer.

The slicing core is the libslic3r library, which can be built and used in a standalone way. The command line interface is a thin wrapper over libslic3r.

What are PrusaSlicer's main features?

Key features are:

  • multi-platform (Linux/Mac/Win) and packaged as standalone-app with no dependencies required
  • complete command-line interface to use it with no GUI
  • multi-material (multiple extruders) object printing
  • multiple G-code flavors supported (RepRap, Makerbot, Mach3, Machinekit etc.)
  • ability to plate multiple objects having distinct print settings
  • multithread processing
  • STL auto-repair (tolerance for broken models)
  • wide automated unit testing

Other major features are:

  • combine infill every 'n' perimeters layer to speed up printing
  • 3D preview (including multi-material files)
  • multiple layer heights in a single print
  • spiral vase mode for bumpless vases
  • fine-grained configuration of speed, acceleration, extrusion width
  • several infill patterns including honeycomb, spirals, Hilbert curves
  • support material, raft, brim, skirt
  • standby temperature and automatic wiping for multi-extruder printing
  • customizable G-code macros and output filename with variable placeholders
  • support for post-processing scripts
  • cooling logic controlling fan speed and dynamic print speed

Development

If you want to compile the source yourself, follow the instructions on one of these documentation pages:

Can I help?

Sure! You can do the following to find things that are available to help with:

What's PrusaSlicer license?

PrusaSlicer is licensed under the GNU Affero General Public License, version 3. The PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci.

How can I use PrusaSlicer from the command line?

Please refer to the Command Line Interface wiki page.