public final class com.sun.marlin.DPathSimplifier implements com.sun.marlin.DPathConsumer2D
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: com.sun.marlin.DPathSimplifier
super_class: java.lang.Object
{
private static final double PIX_THRESHOLD;
descriptor: D
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
private static final double SQUARE_TOLERANCE;
descriptor: D
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
private com.sun.marlin.DPathConsumer2D delegate;
descriptor: Lcom/sun/marlin/DPathConsumer2D;
flags: (0x0002) ACC_PRIVATE
private double cx;
descriptor: D
flags: (0x0002) ACC_PRIVATE
private double cy;
descriptor: D
flags: (0x0002) ACC_PRIVATE
private boolean skipped;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private double sx;
descriptor: D
flags: (0x0002) ACC_PRIVATE
private double sy;
descriptor: D
flags: (0x0002) ACC_PRIVATE
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=4, locals=0, args_size=0
0: invokestatic com.sun.marlin.MarlinProperties.getPathSimplifierPixelTolerance:()F
f2d
putstatic com.sun.marlin.DPathSimplifier.PIX_THRESHOLD:D
1: getstatic com.sun.marlin.DPathSimplifier.PIX_THRESHOLD:D
getstatic com.sun.marlin.DPathSimplifier.PIX_THRESHOLD:D
dmul
putstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
return
LocalVariableTable:
Start End Slot Name Signature
void <init>();
descriptor: ()V
flags: (0x0000)
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/sun/marlin/DPathSimplifier;
public com.sun.marlin.DPathSimplifier init(com.sun.marlin.DPathConsumer2D);
descriptor: (Lcom/sun/marlin/DPathConsumer2D;)Lcom/sun/marlin/DPathSimplifier;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
1: aload 0
iconst_0
putfield com.sun.marlin.DPathSimplifier.skipped:Z
2: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/marlin/DPathSimplifier;
0 3 1 delegate Lcom/sun/marlin/DPathConsumer2D;
MethodParameters:
Name Flags
delegate final
private void finishPath();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=1, args_size=1
start local 0 0: aload 0
getfield com.sun.marlin.DPathSimplifier.skipped:Z
ifeq 2
1: aload 0
aload 0
getfield com.sun.marlin.DPathSimplifier.sx:D
aload 0
getfield com.sun.marlin.DPathSimplifier.sy:D
invokevirtual com.sun.marlin.DPathSimplifier._lineTo:(DD)V
2: StackMap locals:
StackMap stack:
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/marlin/DPathSimplifier;
public void pathDone();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual com.sun.marlin.DPathSimplifier.finishPath:()V
1: aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
invokeinterface com.sun.marlin.DPathConsumer2D.pathDone:()V
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/marlin/DPathSimplifier;
public void closePath();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual com.sun.marlin.DPathSimplifier.finishPath:()V
1: aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
invokeinterface com.sun.marlin.DPathConsumer2D.closePath:()V
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/marlin/DPathSimplifier;
public void moveTo(double, double);
descriptor: (DD)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=3
start local 0 start local 1 start local 3 0: aload 0
invokevirtual com.sun.marlin.DPathSimplifier.finishPath:()V
1: aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
dload 1
dload 3
invokeinterface com.sun.marlin.DPathConsumer2D.moveTo:(DD)V
2: aload 0
dload 1
putfield com.sun.marlin.DPathSimplifier.cx:D
3: aload 0
dload 3
putfield com.sun.marlin.DPathSimplifier.cy:D
4: return
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lcom/sun/marlin/DPathSimplifier;
0 5 1 xe D
0 5 3 ye D
MethodParameters:
Name Flags
xe final
ye final
public void lineTo(double, double);
descriptor: (DD)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=9, args_size=3
start local 0 start local 1 start local 3 0: dload 1
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 5
start local 5 1: dload 3
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 7
start local 7 2: dload 5
dload 5
dmul
dload 7
dload 7
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 7
3: aload 0
iconst_1
putfield com.sun.marlin.DPathSimplifier.skipped:Z
4: aload 0
dload 1
putfield com.sun.marlin.DPathSimplifier.sx:D
5: aload 0
dload 3
putfield com.sun.marlin.DPathSimplifier.sy:D
6: return
7: StackMap locals: double double
StackMap stack:
aload 0
dload 1
dload 3
invokevirtual com.sun.marlin.DPathSimplifier._lineTo:(DD)V
8: return
end local 7 end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lcom/sun/marlin/DPathSimplifier;
0 9 1 xe D
0 9 3 ye D
1 9 5 dx D
2 9 7 dy D
MethodParameters:
Name Flags
xe final
ye final
private void _lineTo(double, double);
descriptor: (DD)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=5, args_size=3
start local 0 start local 1 start local 3 0: aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
dload 1
dload 3
invokeinterface com.sun.marlin.DPathConsumer2D.lineTo:(DD)V
1: aload 0
dload 1
putfield com.sun.marlin.DPathSimplifier.cx:D
2: aload 0
dload 3
putfield com.sun.marlin.DPathSimplifier.cy:D
3: aload 0
iconst_0
putfield com.sun.marlin.DPathSimplifier.skipped:Z
4: return
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lcom/sun/marlin/DPathSimplifier;
0 5 1 xe D
0 5 3 ye D
MethodParameters:
Name Flags
xe final
ye final
public void quadTo(double, double, double, double);
descriptor: (DDDD)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=13, args_size=5
start local 0 start local 1 start local 3 start local 5 start local 7 0: dload 5
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 9
start local 9 1: dload 7
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 11
start local 11 2: dload 9
dload 9
dmul
dload 11
dload 11
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 10
3: dload 1
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 9
4: dload 3
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 11
5: dload 9
dload 9
dmul
dload 11
dload 11
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 10
6: aload 0
iconst_1
putfield com.sun.marlin.DPathSimplifier.skipped:Z
7: aload 0
dload 5
putfield com.sun.marlin.DPathSimplifier.sx:D
8: aload 0
dload 7
putfield com.sun.marlin.DPathSimplifier.sy:D
9: return
10: StackMap locals: double double
StackMap stack:
aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
dload 1
dload 3
dload 5
dload 7
invokeinterface com.sun.marlin.DPathConsumer2D.quadTo:(DDDD)V
11: aload 0
dload 5
putfield com.sun.marlin.DPathSimplifier.cx:D
12: aload 0
dload 7
putfield com.sun.marlin.DPathSimplifier.cy:D
13: aload 0
iconst_0
putfield com.sun.marlin.DPathSimplifier.skipped:Z
14: return
end local 11 end local 9 end local 7 end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 15 0 this Lcom/sun/marlin/DPathSimplifier;
0 15 1 x1 D
0 15 3 y1 D
0 15 5 xe D
0 15 7 ye D
1 15 9 dx D
2 15 11 dy D
MethodParameters:
Name Flags
x1 final
y1 final
xe final
ye final
public void curveTo(double, double, double, double, double, double);
descriptor: (DDDDDD)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=13, locals=17, args_size=7
start local 0 start local 1 start local 3 start local 5 start local 7 start local 9 start local 11 0: dload 9
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 13
start local 13 1: dload 11
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 15
start local 15 2: dload 13
dload 13
dmul
dload 15
dload 15
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 13
3: dload 1
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 13
4: dload 3
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 15
5: dload 13
dload 13
dmul
dload 15
dload 15
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 13
6: dload 5
aload 0
getfield com.sun.marlin.DPathSimplifier.cx:D
dsub
dstore 13
7: dload 7
aload 0
getfield com.sun.marlin.DPathSimplifier.cy:D
dsub
dstore 15
8: dload 13
dload 13
dmul
dload 15
dload 15
dmul
dadd
getstatic com.sun.marlin.DPathSimplifier.SQUARE_TOLERANCE:D
dcmpg
ifgt 13
9: aload 0
iconst_1
putfield com.sun.marlin.DPathSimplifier.skipped:Z
10: aload 0
dload 9
putfield com.sun.marlin.DPathSimplifier.sx:D
11: aload 0
dload 11
putfield com.sun.marlin.DPathSimplifier.sy:D
12: return
13: StackMap locals: double double
StackMap stack:
aload 0
getfield com.sun.marlin.DPathSimplifier.delegate:Lcom/sun/marlin/DPathConsumer2D;
dload 1
dload 3
dload 5
dload 7
dload 9
dload 11
invokeinterface com.sun.marlin.DPathConsumer2D.curveTo:(DDDDDD)V
14: aload 0
dload 9
putfield com.sun.marlin.DPathSimplifier.cx:D
15: aload 0
dload 11
putfield com.sun.marlin.DPathSimplifier.cy:D
16: aload 0
iconst_0
putfield com.sun.marlin.DPathSimplifier.skipped:Z
17: return
end local 15 end local 13 end local 11 end local 9 end local 7 end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 18 0 this Lcom/sun/marlin/DPathSimplifier;
0 18 1 x1 D
0 18 3 y1 D
0 18 5 x2 D
0 18 7 y2 D
0 18 9 xe D
0 18 11 ye D
1 18 13 dx D
2 18 15 dy D
MethodParameters:
Name Flags
x1 final
y1 final
x2 final
y2 final
xe final
ye final
}
SourceFile: "DPathSimplifier.java"