A semicolon is missing for the miterLimit.
I did not check, whether you already fixed this issue in the most recent version. Sorry for the inconvenience - simply close this issue in that case.
It should be:
if (Math.abs(DEFAULT_MITER_LIMIT - miterLimit) > 0.001) {
b.append("stroke-miterlimit: ").append(geomDP(miterLimit)).append(";");
}
But it is:
if (Math.abs(DEFAULT_MITER_LIMIT - miterLimit) > 0.001) {
b.append("stroke-miterlimit: ").append(geomDP(miterLimit));
}
Example:


Solution:


A semicolon is missing for the miterLimit.
I did not check, whether you already fixed this issue in the most recent version. Sorry for the inconvenience - simply close this issue in that case.
It should be:
But it is:
Example:


Solution:

