class com.sun.javafx.geom.CubicIterator implements com.sun.javafx.geom.PathIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.javafx.geom.CubicIterator
  super_class: java.lang.Object
{
  com.sun.javafx.geom.CubicCurve2D cubic;
    descriptor: Lcom/sun/javafx/geom/CubicCurve2D;
    flags: (0x0000) 

  com.sun.javafx.geom.transform.BaseTransform transform;
    descriptor: Lcom/sun/javafx/geom/transform/BaseTransform;
    flags: (0x0000) 

  int index;
    descriptor: I
    flags: (0x0000) 

  void <init>(com.sun.javafx.geom.CubicCurve2D, com.sun.javafx.geom.transform.BaseTransform);
    descriptor: (Lcom/sun/javafx/geom/CubicCurve2D;Lcom/sun/javafx/geom/transform/BaseTransform;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.javafx.geom.CubicIterator this
        start local 1 // com.sun.javafx.geom.CubicCurve2D q
        start local 2 // com.sun.javafx.geom.transform.BaseTransform tx
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* q */
            putfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
         2: .line 45
            aload 0 /* this */
            aload 2 /* tx */
            putfield com.sun.javafx.geom.CubicIterator.transform:Lcom/sun/javafx/geom/transform/BaseTransform;
         3: .line 46
            return
        end local 2 // com.sun.javafx.geom.transform.BaseTransform tx
        end local 1 // com.sun.javafx.geom.CubicCurve2D q
        end local 0 // com.sun.javafx.geom.CubicIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/javafx/geom/CubicIterator;
            0    4     1     q  Lcom/sun/javafx/geom/CubicCurve2D;
            0    4     2    tx  Lcom/sun/javafx/geom/transform/BaseTransform;
    MethodParameters:
      Name  Flags
      q     
      tx    

  public int getWindingRule();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.javafx.geom.CubicIterator this
         0: .line 55
            iconst_1
            ireturn
        end local 0 // com.sun.javafx.geom.CubicIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/geom/CubicIterator;

  public boolean isDone();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.javafx.geom.CubicIterator this
         0: .line 63
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.index:I
            iconst_1
            if_icmple 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.javafx.geom.CubicIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/javafx/geom/CubicIterator;

  public void next();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.javafx.geom.CubicIterator this
         0: .line 72
            aload 0 /* this */
            dup
            getfield com.sun.javafx.geom.CubicIterator.index:I
            iconst_1
            iadd
            putfield com.sun.javafx.geom.CubicIterator.index:I
         1: .line 73
            return
        end local 0 // com.sun.javafx.geom.CubicIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/javafx/geom/CubicIterator;

  public int currentSegment(float[]);
    descriptor: ([F)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.sun.javafx.geom.CubicIterator this
        start local 1 // float[] coords
         0: .line 94
            aload 0 /* this */
            invokevirtual com.sun.javafx.geom.CubicIterator.isDone:()Z
            ifeq 2
         1: .line 95
            new java.util.NoSuchElementException
            dup
            ldc "cubic iterator iterator out of bounds"
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.index:I
            ifne 7
         3: .line 99
            aload 1 /* coords */
            iconst_0
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.x1:F
            fastore
         4: .line 100
            aload 1 /* coords */
            iconst_1
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.y1:F
            fastore
         5: .line 101
            iconst_0
            istore 2 /* type */
        start local 2 // int type
         6: .line 102
            goto 14
        end local 2 // int type
         7: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* coords */
            iconst_0
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.ctrlx1:F
            fastore
         8: .line 104
            aload 1 /* coords */
            iconst_1
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.ctrly1:F
            fastore
         9: .line 105
            aload 1 /* coords */
            iconst_2
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.ctrlx2:F
            fastore
        10: .line 106
            aload 1 /* coords */
            iconst_3
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.ctrly2:F
            fastore
        11: .line 107
            aload 1 /* coords */
            iconst_4
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.x2:F
            fastore
        12: .line 108
            aload 1 /* coords */
            iconst_5
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.cubic:Lcom/sun/javafx/geom/CubicCurve2D;
            getfield com.sun.javafx.geom.CubicCurve2D.y2:F
            fastore
        13: .line 109
            iconst_3
            istore 2 /* type */
        start local 2 // int type
        14: .line 111
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.transform:Lcom/sun/javafx/geom/transform/BaseTransform;
            ifnull 18
        15: .line 112
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.transform:Lcom/sun/javafx/geom/transform/BaseTransform;
            aload 1 /* coords */
            iconst_0
            aload 1 /* coords */
            iconst_0
            aload 0 /* this */
            getfield com.sun.javafx.geom.CubicIterator.index:I
            ifne 16
            iconst_1
            goto 17
      StackMap locals: com.sun.javafx.geom.CubicIterator float[] int
      StackMap stack: com.sun.javafx.geom.transform.BaseTransform float[] int float[] int
        16: iconst_3
      StackMap locals: com.sun.javafx.geom.CubicIterator float[] int
      StackMap stack: com.sun.javafx.geom.transform.BaseTransform float[] int float[] int int
        17: invokevirtual com.sun.javafx.geom.transform.BaseTransform.transform:([FI[FII)V
        18: .line 114
      StackMap locals:
      StackMap stack:
            iload 2 /* type */
            ireturn
        end local 2 // int type
        end local 1 // float[] coords
        end local 0 // com.sun.javafx.geom.CubicIterator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lcom/sun/javafx/geom/CubicIterator;
            0   19     1  coords  [F
            6    7     2    type  I
           14   19     2    type  I
    MethodParameters:
        Name  Flags
      coords  
}
SourceFile: "CubicIterator.java"