1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-16 08:54:26 +00:00

Ported nearest_point() and nearest_point_index()

This commit is contained in:
Alessandro Ranellucci
2013-08-27 00:52:20 +02:00
parent f1e9216c70
commit b11b595c97
18 changed files with 79 additions and 69 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ sub chained_path {
while (@my_paths) {
# find nearest point
my $start_index = defined $start_near
? Slic3r::Geometry::nearest_point_index($start_near, $endpoints)
? $start_near->nearest_point_index($endpoints)
: 0;
my $path_index = int($start_index/2);