0f3cabb5d9
config bundles, project files (3MFs, AMFs). When loading these files, the caller may decide whether to substitute some of the configuration values the current PrusaSlicer version does not understand with some reasonable default value, and whether to report it. If substitution is disabled, an exception is being thrown as before this commit. If substitution is enabled, list of substitutions is returned by the API to be presented to the user. This allows us to introduce for example new firmware flavor key in PrusaSlicer 2.4 while letting PrusaSlicer 2.3.2 to fall back to some default and to report it to the user. When slicing from command line, substutions are performed by default and reported into the console, however substitutions may be either disabled or made silent with the new "config-compatibility" command line option. Substitute enums and bools only. Allow booleans to be parsed as true: "1", "enabled", "on" case insensitive false: "0", "disabled", "off" case insensitive This will allow us in the future for example to switch the draft_shield boolean to an enum with the following values: "disabled" / "enabled" / "limited". Added "enum_bitmask.hpp" - support for type safe sets of options. See for example PresetBundle::load_configbundle(... LoadConfigBundleAttributes flags) for an example of intended usage. WIP: GUI for reporting the list of config substitutions needs to be implemented by @YuSanka. |
||
---|---|---|
.github | ||
cmake | ||
deps | ||
doc | ||
lib | ||
resources | ||
sandboxes | ||
src | ||
t | ||
tests | ||
xs | ||
.clang-format | ||
.gitignore | ||
Build.PL | ||
CMakeLists.txt | ||
LICENSE | ||
PrusaSlicer.mo | ||
PrusaSlicer.sublime-project | ||
README.md | ||
version.inc |
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 Ranellucci 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:
- Add an issue to the github tracker if it isn't already present.
- Look at issues labeled "volunteer needed"
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.