mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-12 08:49:01 +00:00
Disabled miter join - it is too slow :-(
This commit is contained in:
@@ -440,7 +440,8 @@ public class BitmapExporter extends ShapeExporterBase {
|
||||
|
||||
if (joinStyle == BasicStroke.JOIN_MITER) {
|
||||
lineStroke = new BasicStroke((float) thickness, capStyle, joinStyle, miterLimit);
|
||||
lineStroke = new MiterClipBasicStroke((BasicStroke) lineStroke);
|
||||
//This seems to be correct, but ridiculously slow :-(
|
||||
//lineStroke = new MiterClipBasicStroke((BasicStroke) lineStroke);
|
||||
} else {
|
||||
lineStroke = new BasicStroke((float) thickness, capStyle, joinStyle);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user