1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00

Avoid placement of seams on bridging perimeters, if random seam is enabled.

https://github.com/alexrj/Slic3r/issues/3526#issuecomment-263125049
This commit is contained in:
bubnikv
2017-02-02 18:49:33 +01:00
parent 4256af22ff
commit 7e6390c4b6
4 changed files with 35 additions and 19 deletions
+2 -2
View File
@@ -21,8 +21,8 @@
double length();
bool split_at_vertex(Point* point)
%code{% RETVAL = THIS->split_at_vertex(*point); %};
void split_at(Point* point)
%code{% THIS->split_at(*point); %};
void split_at(Point* point, int prefer_non_overhang = 0)
%code{% THIS->split_at(*point, prefer_non_overhang != 0); %};
ExtrusionPaths clip_end(double distance)
%code{% THIS->clip_end(distance, &RETVAL); %};
bool has_overhang_point(Point* point)