~ultimaker/ultimaker/+git/CuraEngine:3.5

Last commit made on 2018-10-15
Get this branch:
git clone -b 3.5 https://git.launchpad.net/~ultimaker/ultimaker/+git/CuraEngine

Branch merges

Branch information

Recent commits

71d4413... by Mark Burton <email address hidden>

Bug fix in comb path generation - correct fwd path length before comparing with rev path length.

67ac699... by Ruben D

Document fix for missing infill with gradual and connected infill

Contributes to issue CURA-5811.

02f44ea... by Ruben D

Don't clear previous infill densities when generating connected lines

The bug was that when connecting infill lines, it clears the previously generated lines to replace them with polylines. The result_lines is an output polygon that contains all infill lines from different infill densities as well if you're using gradual infill. So this clear() would also delete previous infill densities and will not re-fill them with connected lines.

Contributes to issue CURA-5811.

aa08088... by Remco Burema <email address hidden>

Merge pull request #867 from Ultimaker/CURA-5777_3.5_fix_point_operators

[3.5] CURA-5777 Fix Point operators

52188a4... by Lipu Fei

Document why not to implement *= and /= for Point

CURA-5777

567483a... by Lipu Fei

Fix point operators

CURA-5777

Because Point is a clipperlib point, which has a constructor Point(int
x = 0, int y = 0), which can implicitly convert a int/unsigned int "c"
to a Point(c, y = 0), and this causes undesired behaviour. So, we remove
the /= and *= operators in Point to avoid this implicit conversion to
happen.

a4ed796... by Aleksei S <email address hidden>

Fix optimizePaths when coordinate origin at the build plate center
CURA-5777

e18a37e... by Remco Burema <email address hidden>

Update documentation for getInnermostWalls.

21f91b1... by Remco Burema <email address hidden>

Somewhat future-proof the cache for getInnermostWalls.

8d4d3cd... by Remco Burema <email address hidden>

Cont. fix slice-time: Fix silly oversight where the cache for 'getInnermostWalls' ignored that an argument changed.