mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 21:58:03 -06:00
Rewrote Fill2.pm to C++, deleted Perl infills for good.
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.
This commit is contained in:
parent
3a31d37d35
commit
95ede7c4b8
49 changed files with 628 additions and 1803 deletions
|
@ -56,8 +56,6 @@ use Slic3r::Config;
|
|||
use Slic3r::ExPolygon;
|
||||
use Slic3r::ExtrusionLoop;
|
||||
use Slic3r::ExtrusionPath;
|
||||
use Slic3r::Fill;
|
||||
use Slic3r::Fill2;
|
||||
use Slic3r::Flow;
|
||||
use Slic3r::Format::AMF;
|
||||
use Slic3r::Format::OBJ;
|
||||
|
@ -139,7 +137,7 @@ sub spawn_thread {
|
|||
# Otherwise run the task on the current thread.
|
||||
# Used for
|
||||
# Slic3r::Print::Object->layers->make_perimeters : This is a pure C++ function.
|
||||
# Slic3r::Print::Object->layers->make_fill : This requires a rewrite of Fill.pm to C++.
|
||||
# Slic3r::Print::Object->layers->make_fill : This is a pure C++ function.
|
||||
# Slic3r::Print::SupportMaterial::generate_toolpaths
|
||||
sub parallelize {
|
||||
my %params = @_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue