class org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
  super_class: java.lang.Object
{
  private org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] loop;
    descriptor: [Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<org.apache.commons.math3.geometry.euclidean.twod.NestedLoops> surrounded;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;>;

  private org.apache.commons.math3.geometry.partitioning.Region<org.apache.commons.math3.geometry.euclidean.twod.Euclidean2D> polygon;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/Region;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/Region<Lorg/apache/commons/math3/geometry/euclidean/twod/Euclidean2D;>;

  private boolean originalIsClockwise;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final double tolerance;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(double);
    descriptor: (D)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
        start local 1 // double tolerance
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
         2: .line 75
            aload 0 /* this */
            dload 1 /* tolerance */
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.tolerance:D
         3: .line 76
            return
        end local 1 // double tolerance
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            0    4     1  tolerance  D
    MethodParameters:
           Name  Flags
      tolerance  final

  private void <init>(org.apache.commons.math3.geometry.euclidean.twod.Vector2D[], double);
    descriptor: ([Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=10, args_size=3
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] loop
        start local 2 // double tolerance
         0: .line 85
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 88
            aload 1 /* loop */
            iconst_0
            aaload
            ifnonnull 3
         2: .line 89
            new org.apache.commons.math3.exception.MathIllegalArgumentException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.OUTLINE_BOUNDARY_LOOP_OPEN:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         3: .line 92
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] double
      StackMap stack:
            aload 0 /* this */
            aload 1 /* loop */
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
         4: .line 93
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
         5: .line 94
            aload 0 /* this */
            dload 2 /* tolerance */
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.tolerance:D
         6: .line 97
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* edges */
        start local 4 // java.util.ArrayList edges
         7: .line 98
            aload 1 /* loop */
            aload 1 /* loop */
            arraylength
            iconst_1
            isub
            aaload
            astore 5 /* current */
        start local 5 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D current
         8: .line 99
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         9: goto 20
        10: .line 100
      StackMap locals: java.util.ArrayList org.apache.commons.math3.geometry.euclidean.twod.Vector2D int
      StackMap stack:
            aload 5 /* current */
            astore 7 /* previous */
        start local 7 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D previous
        11: .line 101
            aload 1 /* loop */
            iload 6 /* i */
            aaload
            astore 5 /* current */
        12: .line 102
            new org.apache.commons.math3.geometry.euclidean.twod.Line
            dup
            aload 7 /* previous */
            aload 5 /* current */
            dload 2 /* tolerance */
            invokespecial org.apache.commons.math3.geometry.euclidean.twod.Line.<init>:(Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;D)V
            astore 8 /* line */
        start local 8 // org.apache.commons.math3.geometry.euclidean.twod.Line line
        13: .line 104
            new org.apache.commons.math3.geometry.euclidean.oned.IntervalsSet
            dup
            aload 8 /* line */
            aload 7 /* previous */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Line.toSubSpace:(Lorg/apache/commons/math3/geometry/Point;)Lorg/apache/commons/math3/geometry/euclidean/oned/Vector1D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.oned.Vector1D.getX:()D
        14: .line 105
            aload 8 /* line */
            aload 5 /* current */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Line.toSubSpace:(Lorg/apache/commons/math3/geometry/Point;)Lorg/apache/commons/math3/geometry/euclidean/oned/Vector1D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.oned.Vector1D.getX:()D
        15: .line 106
            dload 2 /* tolerance */
        16: .line 104
            invokespecial org.apache.commons.math3.geometry.euclidean.oned.IntervalsSet.<init>:(DDD)V
        17: .line 103
            astore 9 /* region */
        start local 9 // org.apache.commons.math3.geometry.euclidean.oned.IntervalsSet region
        18: .line 107
            aload 4 /* edges */
            new org.apache.commons.math3.geometry.euclidean.twod.SubLine
            dup
            aload 8 /* line */
            aload 9 /* region */
            invokespecial org.apache.commons.math3.geometry.euclidean.twod.SubLine.<init>:(Lorg/apache/commons/math3/geometry/partitioning/Hyperplane;Lorg/apache/commons/math3/geometry/partitioning/Region;)V
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 9 // org.apache.commons.math3.geometry.euclidean.oned.IntervalsSet region
        end local 8 // org.apache.commons.math3.geometry.euclidean.twod.Line line
        end local 7 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D previous
        19: .line 99
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 6 /* i */
            aload 1 /* loop */
            arraylength
            if_icmplt 10
        end local 6 // int i
        21: .line 109
            aload 0 /* this */
            new org.apache.commons.math3.geometry.euclidean.twod.PolygonsSet
            dup
            aload 4 /* edges */
            dload 2 /* tolerance */
            invokespecial org.apache.commons.math3.geometry.euclidean.twod.PolygonsSet.<init>:(Ljava/util/Collection;D)V
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
        22: .line 112
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokeinterface org.apache.commons.math3.geometry.partitioning.Region.getSize:()D
            invokestatic java.lang.Double.isInfinite:(D)Z
            ifeq 26
        23: .line 113
            aload 0 /* this */
            new org.apache.commons.math3.geometry.partitioning.RegionFactory
            dup
            invokespecial org.apache.commons.math3.geometry.partitioning.RegionFactory.<init>:()V
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokevirtual org.apache.commons.math3.geometry.partitioning.RegionFactory.getComplement:(Lorg/apache/commons/math3/geometry/partitioning/Region;)Lorg/apache/commons/math3/geometry/partitioning/Region;
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
        24: .line 114
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.originalIsClockwise:Z
        25: .line 115
            goto 27
        26: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.originalIsClockwise:Z
        27: .line 119
      StackMap locals:
      StackMap stack:
            return
        end local 5 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D current
        end local 4 // java.util.ArrayList edges
        end local 2 // double tolerance
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] loop
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            0   28     1       loop  [Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            0   28     2  tolerance  D
            7   28     4      edges  Ljava/util/ArrayList<Lorg/apache/commons/math3/geometry/partitioning/SubHyperplane<Lorg/apache/commons/math3/geometry/euclidean/twod/Euclidean2D;>;>;
            8   28     5    current  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            9   21     6          i  I
           11   19     7   previous  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
           13   19     8       line  Lorg/apache/commons/math3/geometry/euclidean/twod/Line;
           18   19     9     region  Lorg/apache/commons/math3/geometry/euclidean/oned/IntervalsSet;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
           Name  Flags
      loop       final
      tolerance  final

  public void add(org.apache.commons.math3.geometry.euclidean.twod.Vector2D[]);
    descriptor: ([Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] bLoop
         0: .line 127
            aload 0 /* this */
            new org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            dup
            aload 1 /* bLoop */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.tolerance:D
            invokespecial org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.<init>:([Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;D)V
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.add:(Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;)V
         1: .line 128
            return
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D[] bLoop
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            0    2     1  bLoop  [Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
       Name  Flags
      bLoop  final

  private void add(org.apache.commons.math3.geometry.euclidean.twod.NestedLoops);
    descriptor: (Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops node
         0: .line 138
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops org.apache.commons.math3.geometry.euclidean.twod.NestedLoops top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            astore 2 /* child */
        start local 2 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
         2: .line 139
            aload 2 /* child */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokeinterface org.apache.commons.math3.geometry.partitioning.Region.contains:(Lorg/apache/commons/math3/geometry/partitioning/Region;)Z
            ifeq 5
         3: .line 140
            aload 2 /* child */
            aload 1 /* node */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.add:(Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;)V
         4: .line 141
            return
        end local 2 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
         5: .line 138
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         6: .line 146
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         7: goto 12
         8: .line 147
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops org.apache.commons.math3.geometry.euclidean.twod.NestedLoops java.util.Iterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            astore 3 /* child */
        start local 3 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
         9: .line 148
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            aload 3 /* child */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokeinterface org.apache.commons.math3.geometry.partitioning.Region.contains:(Lorg/apache/commons/math3/geometry/partitioning/Region;)Z
            ifeq 12
        10: .line 149
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            aload 3 /* child */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        11: .line 150
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.remove:()V
        end local 3 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
        12: .line 146
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        end local 2 // java.util.Iterator iterator
        13: .line 155
            new org.apache.commons.math3.geometry.partitioning.RegionFactory
            dup
            invokespecial org.apache.commons.math3.geometry.partitioning.RegionFactory.<init>:()V
            astore 2 /* factory */
        start local 2 // org.apache.commons.math3.geometry.partitioning.RegionFactory factory
        14: .line 156
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 18
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops org.apache.commons.math3.geometry.euclidean.twod.NestedLoops org.apache.commons.math3.geometry.partitioning.RegionFactory top java.util.Iterator
      StackMap stack:
        15: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            astore 3 /* child */
        start local 3 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
        16: .line 157
            aload 2 /* factory */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            aload 3 /* child */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.polygon:Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokevirtual org.apache.commons.math3.geometry.partitioning.RegionFactory.intersection:(Lorg/apache/commons/math3/geometry/partitioning/Region;Lorg/apache/commons/math3/geometry/partitioning/Region;)Lorg/apache/commons/math3/geometry/partitioning/Region;
            invokeinterface org.apache.commons.math3.geometry.partitioning.Region.isEmpty:()Z
            ifne 18
        17: .line 158
            new org.apache.commons.math3.exception.MathIllegalArgumentException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.CROSSING_BOUNDARY_LOOPS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
        end local 3 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
        18: .line 156
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 15
        19: .line 162
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            aload 1 /* node */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        20: .line 164
            return
        end local 2 // org.apache.commons.math3.geometry.partitioning.RegionFactory factory
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops node
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            0   21     1      node  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            2    5     2     child  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            7   13     2  iterator  Ljava/util/Iterator<Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;>;
            9   12     3     child  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
           14   21     2   factory  Lorg/apache/commons/math3/geometry/partitioning/RegionFactory<Lorg/apache/commons/math3/geometry/euclidean/twod/Euclidean2D;>;
           16   18     3     child  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
      Name  Flags
      node  final

  public void correctOrientation();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
         0: .line 172
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 3
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            astore 1 /* child */
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
         2: .line 173
            aload 1 /* child */
            iconst_1
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.setClockWise:(Z)V
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
         3: .line 172
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 175
            return
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            2    3     1  child  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;

  private void setClockWise(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
        start local 1 // boolean clockwise
         0: .line 183
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.originalIsClockwise:Z
            iload 1 /* clockwise */
            ixor
            ifeq 8
         1: .line 185
            iconst_m1
            istore 2 /* min */
        start local 2 // int min
         2: .line 186
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            arraylength
            istore 3 /* max */
        start local 3 // int max
         3: .line 187
            goto 7
         4: .line 188
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            iload 2 /* min */
            aaload
            astore 4 /* tmp */
        start local 4 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D tmp
         5: .line 189
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            iload 2 /* min */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            iload 3 /* max */
            aaload
            aastore
         6: .line 190
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.loop:[Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            iload 3 /* max */
            aload 4 /* tmp */
            aastore
        end local 4 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D tmp
         7: .line 187
      StackMap locals:
      StackMap stack:
            iinc 2 /* min */ 1
            iload 2 /* min */
            iinc 3 /* max */ -1
            iload 3 /* max */
            if_icmplt 4
        end local 3 // int max
        end local 2 // int min
         8: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.surrounded:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 13
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops int top java.util.Iterator
      StackMap stack:
         9: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
            astore 2 /* child */
        start local 2 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
        10: .line 196
            aload 2 /* child */
            iload 1 /* clockwise */
            ifeq 11
            iconst_0
            goto 12
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops int org.apache.commons.math3.geometry.euclidean.twod.NestedLoops java.util.Iterator
      StackMap stack: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops
        11: iconst_1
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops int org.apache.commons.math3.geometry.euclidean.twod.NestedLoops java.util.Iterator
      StackMap stack: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops int
        12: invokevirtual org.apache.commons.math3.geometry.euclidean.twod.NestedLoops.setClockWise:(Z)V
        end local 2 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops child
        13: .line 195
      StackMap locals: org.apache.commons.math3.geometry.euclidean.twod.NestedLoops int top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        14: .line 199
            return
        end local 1 // boolean clockwise
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.NestedLoops this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
            0   15     1  clockwise  Z
            2    8     2        min  I
            3    8     3        max  I
            5    7     4        tmp  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
           10   13     2      child  Lorg/apache/commons/math3/geometry/euclidean/twod/NestedLoops;
    MethodParameters:
           Name  Flags
      clockwise  final
}
SourceFile: "NestedLoops.java"