final class sun.java2d.marlin.PathSimplifier implements sun.awt.geom.PathConsumer2D
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.java2d.marlin.PathSimplifier
  super_class: java.lang.Object
{
  private static final float PIX_THRESHOLD;
    descriptor: F
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final float SQUARE_TOLERANCE;
    descriptor: F
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private sun.awt.geom.PathConsumer2D delegate;
    descriptor: Lsun/awt/geom/PathConsumer2D;
    flags: (0x0002) ACC_PRIVATE

  private float cx;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float cy;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 32
            invokestatic sun.java2d.marlin.MarlinProperties.getPathSimplifierPixelTolerance:()F
            putstatic sun.java2d.marlin.PathSimplifier.PIX_THRESHOLD:F
         1: .line 34
            getstatic sun.java2d.marlin.PathSimplifier.PIX_THRESHOLD:F
            getstatic sun.java2d.marlin.PathSimplifier.PIX_THRESHOLD:F
            fmul
            putstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.java2d.marlin.PathSimplifier this
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            return
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/java2d/marlin/PathSimplifier;

  sun.java2d.marlin.PathSimplifier init(sun.awt.geom.PathConsumer2D);
    descriptor: (Lsun/awt/geom/PathConsumer2D;)Lsun/java2d/marlin/PathSimplifier;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.java2d.marlin.PathSimplifier this
        start local 1 // sun.awt.geom.PathConsumer2D delegate
         0: .line 44
            aload 0 /* this */
            aload 1 /* delegate */
            putfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
         1: .line 45
            aload 0 /* this */
            areturn
        end local 1 // sun.awt.geom.PathConsumer2D delegate
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lsun/java2d/marlin/PathSimplifier;
            0    2     1  delegate  Lsun/awt/geom/PathConsumer2D;
    MethodParameters:
          Name  Flags
      delegate  final

  public void pathDone();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.java2d.marlin.PathSimplifier this
         0: .line 50
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            invokeinterface sun.awt.geom.PathConsumer2D.pathDone:()V
         1: .line 51
            return
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/java2d/marlin/PathSimplifier;

  public void closePath();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.java2d.marlin.PathSimplifier this
         0: .line 55
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            invokeinterface sun.awt.geom.PathConsumer2D.closePath:()V
         1: .line 56
            return
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/java2d/marlin/PathSimplifier;

  public long getNativeConsumer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.java2d.marlin.PathSimplifier this
         0: .line 60
            lconst_0
            lreturn
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/java2d/marlin/PathSimplifier;

  public void quadTo(float, float, float, float);
    descriptor: (FFFF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // sun.java2d.marlin.PathSimplifier this
        start local 1 // float x1
        start local 2 // float y1
        start local 3 // float xe
        start local 4 // float ye
         0: .line 68
            fload 3 /* xe */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 5 /* dx */
        start local 5 // float dx
         1: .line 69
            fload 4 /* ye */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 6 /* dy */
        start local 6 // float dy
         2: .line 71
            fload 5 /* dx */
            fload 5 /* dx */
            fmul
            fload 6 /* dy */
            fload 6 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 7
         3: .line 73
            fload 1 /* x1 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 5 /* dx */
         4: .line 74
            fload 2 /* y1 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 6 /* dy */
         5: .line 76
            fload 5 /* dx */
            fload 5 /* dx */
            fmul
            fload 6 /* dy */
            fload 6 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 7
         6: .line 77
            return
         7: .line 80
      StackMap locals: float float
      StackMap stack:
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            fload 1 /* x1 */
            fload 2 /* y1 */
            fload 3 /* xe */
            fload 4 /* ye */
            invokeinterface sun.awt.geom.PathConsumer2D.quadTo:(FFFF)V
         8: .line 82
            aload 0 /* this */
            fload 3 /* xe */
            putfield sun.java2d.marlin.PathSimplifier.cx:F
         9: .line 83
            aload 0 /* this */
            fload 4 /* ye */
            putfield sun.java2d.marlin.PathSimplifier.cy:F
        10: .line 84
            return
        end local 6 // float dy
        end local 5 // float dx
        end local 4 // float ye
        end local 3 // float xe
        end local 2 // float y1
        end local 1 // float x1
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/java2d/marlin/PathSimplifier;
            0   11     1    x1  F
            0   11     2    y1  F
            0   11     3    xe  F
            0   11     4    ye  F
            1   11     5    dx  F
            2   11     6    dy  F
    MethodParameters:
      Name  Flags
      x1    final
      y1    final
      xe    final
      ye    final

  public void curveTo(float, float, float, float, float, float);
    descriptor: (FFFFFF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=7
        start local 0 // sun.java2d.marlin.PathSimplifier this
        start local 1 // float x1
        start local 2 // float y1
        start local 3 // float x2
        start local 4 // float y2
        start local 5 // float xe
        start local 6 // float ye
         0: .line 92
            fload 5 /* xe */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 7 /* dx */
        start local 7 // float dx
         1: .line 93
            fload 6 /* ye */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 8 /* dy */
        start local 8 // float dy
         2: .line 95
            fload 7 /* dx */
            fload 7 /* dx */
            fmul
            fload 8 /* dy */
            fload 8 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 10
         3: .line 97
            fload 1 /* x1 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 7 /* dx */
         4: .line 98
            fload 2 /* y1 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 8 /* dy */
         5: .line 100
            fload 7 /* dx */
            fload 7 /* dx */
            fmul
            fload 8 /* dy */
            fload 8 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 10
         6: .line 102
            fload 3 /* x2 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 7 /* dx */
         7: .line 103
            fload 4 /* y2 */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 8 /* dy */
         8: .line 105
            fload 7 /* dx */
            fload 7 /* dx */
            fmul
            fload 8 /* dy */
            fload 8 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 10
         9: .line 106
            return
        10: .line 110
      StackMap locals: float float
      StackMap stack:
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            fload 1 /* x1 */
            fload 2 /* y1 */
            fload 3 /* x2 */
            fload 4 /* y2 */
            fload 5 /* xe */
            fload 6 /* ye */
            invokeinterface sun.awt.geom.PathConsumer2D.curveTo:(FFFFFF)V
        11: .line 112
            aload 0 /* this */
            fload 5 /* xe */
            putfield sun.java2d.marlin.PathSimplifier.cx:F
        12: .line 113
            aload 0 /* this */
            fload 6 /* ye */
            putfield sun.java2d.marlin.PathSimplifier.cy:F
        13: .line 114
            return
        end local 8 // float dy
        end local 7 // float dx
        end local 6 // float ye
        end local 5 // float xe
        end local 4 // float y2
        end local 3 // float x2
        end local 2 // float y1
        end local 1 // float x1
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/java2d/marlin/PathSimplifier;
            0   14     1    x1  F
            0   14     2    y1  F
            0   14     3    x2  F
            0   14     4    y2  F
            0   14     5    xe  F
            0   14     6    ye  F
            1   14     7    dx  F
            2   14     8    dy  F
    MethodParameters:
      Name  Flags
      x1    final
      y1    final
      x2    final
      y2    final
      xe    final
      ye    final

  public void moveTo(float, float);
    descriptor: (FF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.java2d.marlin.PathSimplifier this
        start local 1 // float xe
        start local 2 // float ye
         0: .line 118
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            fload 1 /* xe */
            fload 2 /* ye */
            invokeinterface sun.awt.geom.PathConsumer2D.moveTo:(FF)V
         1: .line 120
            aload 0 /* this */
            fload 1 /* xe */
            putfield sun.java2d.marlin.PathSimplifier.cx:F
         2: .line 121
            aload 0 /* this */
            fload 2 /* ye */
            putfield sun.java2d.marlin.PathSimplifier.cy:F
         3: .line 122
            return
        end local 2 // float ye
        end local 1 // float xe
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/java2d/marlin/PathSimplifier;
            0    4     1    xe  F
            0    4     2    ye  F
    MethodParameters:
      Name  Flags
      xe    final
      ye    final

  public void lineTo(float, float);
    descriptor: (FF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // sun.java2d.marlin.PathSimplifier this
        start local 1 // float xe
        start local 2 // float ye
         0: .line 127
            fload 1 /* xe */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cx:F
            fsub
            fstore 3 /* dx */
        start local 3 // float dx
         1: .line 128
            fload 2 /* ye */
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.cy:F
            fsub
            fstore 4 /* dy */
        start local 4 // float dy
         2: .line 130
            fload 3 /* dx */
            fload 3 /* dx */
            fmul
            fload 4 /* dy */
            fload 4 /* dy */
            fmul
            fadd
            getstatic sun.java2d.marlin.PathSimplifier.SQUARE_TOLERANCE:F
            fcmpg
            ifgt 4
         3: .line 131
            return
         4: .line 133
      StackMap locals: float float
      StackMap stack:
            aload 0 /* this */
            getfield sun.java2d.marlin.PathSimplifier.delegate:Lsun/awt/geom/PathConsumer2D;
            fload 1 /* xe */
            fload 2 /* ye */
            invokeinterface sun.awt.geom.PathConsumer2D.lineTo:(FF)V
         5: .line 135
            aload 0 /* this */
            fload 1 /* xe */
            putfield sun.java2d.marlin.PathSimplifier.cx:F
         6: .line 136
            aload 0 /* this */
            fload 2 /* ye */
            putfield sun.java2d.marlin.PathSimplifier.cy:F
         7: .line 137
            return
        end local 4 // float dy
        end local 3 // float dx
        end local 2 // float ye
        end local 1 // float xe
        end local 0 // sun.java2d.marlin.PathSimplifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/java2d/marlin/PathSimplifier;
            0    8     1    xe  F
            0    8     2    ye  F
            1    8     3    dx  F
            2    8     4    dy  F
    MethodParameters:
      Name  Flags
      xe    final
      ye    final
}
SourceFile: "PathSimplifier.java"