Correction for _path_cut_points() rename.

This commit is contained in:
Garth Minette
2021-09-19 20:08:38 -07:00
parent f993e4339e
commit 0260d92187
4 changed files with 8 additions and 8 deletions

View File

@@ -946,7 +946,7 @@ module path_spread(path, n, spacing, sp=undef, rotate_children=true, closed=fals
);
distOK = is_def(n) || (min(distances)>=0 && max(distances)<=length);
assert(distOK,"Cannot fit all of the copies");
cutlist = path_cut_points(path, distances, closed, direction=true);
cutlist = _path_cut_points(path, distances, closed, direction=true);
planar = len(path[0])==2;
if (true) for(i=[0:1:len(cutlist)-1]) {
$pos = cutlist[i][0];