public class org.apache.commons.math3.geometry.spherical.twod.Edge
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.geometry.spherical.twod.Edge
  super_class: java.lang.Object
{
  private final org.apache.commons.math3.geometry.spherical.twod.Vertex start;
    descriptor: Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.apache.commons.math3.geometry.spherical.twod.Vertex end;
    descriptor: Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    flags: (0x0002) ACC_PRIVATE

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

  private final org.apache.commons.math3.geometry.spherical.twod.Circle circle;
    descriptor: Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.apache.commons.math3.geometry.spherical.twod.Vertex, org.apache.commons.math3.geometry.spherical.twod.Vertex, double, org.apache.commons.math3.geometry.spherical.twod.Circle);
    descriptor: (Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLorg/apache/commons/math3/geometry/spherical/twod/Circle;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
        start local 1 // org.apache.commons.math3.geometry.spherical.twod.Vertex start
        start local 2 // org.apache.commons.math3.geometry.spherical.twod.Vertex end
        start local 3 // double length
        start local 5 // org.apache.commons.math3.geometry.spherical.twod.Circle circle
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* start */
            putfield org.apache.commons.math3.geometry.spherical.twod.Edge.start:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
         2: .line 54
            aload 0 /* this */
            aload 2 /* end */
            putfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
         3: .line 55
            aload 0 /* this */
            dload 3 /* length */
            putfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
         4: .line 56
            aload 0 /* this */
            aload 5 /* circle */
            putfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
         5: .line 59
            aload 1 /* start */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.setOutgoing:(Lorg/apache/commons/math3/geometry/spherical/twod/Edge;)V
         6: .line 60
            aload 2 /* end */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.setIncoming:(Lorg/apache/commons/math3/geometry/spherical/twod/Edge;)V
         7: .line 62
            return
        end local 5 // org.apache.commons.math3.geometry.spherical.twod.Circle circle
        end local 3 // double length
        end local 2 // org.apache.commons.math3.geometry.spherical.twod.Vertex end
        end local 1 // org.apache.commons.math3.geometry.spherical.twod.Vertex start
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
            0    8     1   start  Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            0    8     2     end  Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            0    8     3  length  D
            0    8     5  circle  Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
    MethodParameters:
        Name  Flags
      start   final
      end     final
      length  final
      circle  final

  public org.apache.commons.math3.geometry.spherical.twod.Vertex getStart();
    descriptor: ()Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
         0: .line 68
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.start:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            areturn
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;

  public org.apache.commons.math3.geometry.spherical.twod.Vertex getEnd();
    descriptor: ()Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
         0: .line 75
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            areturn
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;

  public double getLength();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
         0: .line 82
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dreturn
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;

  public org.apache.commons.math3.geometry.spherical.twod.Circle getCircle();
    descriptor: ()Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
         0: .line 89
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            areturn
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;

  public org.apache.commons.math3.geometry.euclidean.threed.Vector3D getPointAt(double);
    descriptor: (D)Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
        start local 1 // double alpha
         0: .line 103
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            dload 1 /* alpha */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.start:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.getLocation:()Lorg/apache/commons/math3/geometry/spherical/twod/S2Point;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.S2Point.getVector:()Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPhase:(Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;)D
            dadd
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPointAt:(D)Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            areturn
        end local 1 // double alpha
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
            0    1     1  alpha  D
    MethodParameters:
       Name  Flags
      alpha  final

  void setNextEdge(org.apache.commons.math3.geometry.spherical.twod.Edge);
    descriptor: (Lorg/apache/commons/math3/geometry/spherical/twod/Edge;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
        start local 1 // org.apache.commons.math3.geometry.spherical.twod.Edge next
         0: .line 110
            aload 0 /* this */
            aload 1 /* next */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.getStart:()Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            putfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
         1: .line 111
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.setIncoming:(Lorg/apache/commons/math3/geometry/spherical/twod/Edge;)V
         2: .line 112
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.getCircle:()Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.bindWith:(Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)V
         3: .line 113
            return
        end local 1 // org.apache.commons.math3.geometry.spherical.twod.Edge next
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
            0    4     1  next  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
    MethodParameters:
      Name  Flags
      next  final

  void split(org.apache.commons.math3.geometry.spherical.twod.Circle, java.util.List<org.apache.commons.math3.geometry.spherical.twod.Edge>, java.util.List<org.apache.commons.math3.geometry.spherical.twod.Edge>);
    descriptor: (Lorg/apache/commons/math3/geometry/spherical/twod/Circle;Ljava/util/List;Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=11, locals=18, args_size=4
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
        start local 1 // org.apache.commons.math3.geometry.spherical.twod.Circle splitCircle
        start local 2 // java.util.List outsideList
        start local 3 // java.util.List insideList
         0: .line 129
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.start:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.getLocation:()Lorg/apache/commons/math3/geometry/spherical/twod/S2Point;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.S2Point.getVector:()Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPhase:(Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;)D
            dstore 4 /* edgeStart */
        start local 4 // double edgeStart
         1: .line 130
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            aload 1 /* splitCircle */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getInsideArc:(Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/oned/Arc;
            astore 6 /* arc */
        start local 6 // org.apache.commons.math3.geometry.spherical.oned.Arc arc
         2: .line 131
            aload 6 /* arc */
            invokevirtual org.apache.commons.math3.geometry.spherical.oned.Arc.getInf:()D
            dload 4 /* edgeStart */
            ldc 3.141592653589793
            dadd
            invokestatic org.apache.commons.math3.util.MathUtils.normalizeAngle:(DD)D
            dload 4 /* edgeStart */
            dsub
            dstore 7 /* arcRelativeStart */
        start local 7 // double arcRelativeStart
         3: .line 132
            dload 7 /* arcRelativeStart */
            aload 6 /* arc */
            invokevirtual org.apache.commons.math3.geometry.spherical.oned.Arc.getSize:()D
            dadd
            dstore 9 /* arcRelativeEnd */
        start local 9 // double arcRelativeEnd
         4: .line 133
            dload 9 /* arcRelativeEnd */
            ldc 6.283185307179586
            dsub
            dstore 11 /* unwrappedEnd */
        start local 11 // double unwrappedEnd
         5: .line 136
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getTolerance:()D
            dstore 13 /* tolerance */
        start local 13 // double tolerance
         6: .line 137
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.start:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        start local 15 // org.apache.commons.math3.geometry.spherical.twod.Vertex previousVertex
         7: .line 138
            dload 11 /* unwrappedEnd */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 13 /* tolerance */
            dsub
            dcmpl
            iflt 10
         8: .line 142
            aload 3 /* insideList */
            aload 0 /* this */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         9: .line 144
            goto 43
        10: .line 148
      StackMap locals: org.apache.commons.math3.geometry.spherical.twod.Edge org.apache.commons.math3.geometry.spherical.twod.Circle java.util.List java.util.List double org.apache.commons.math3.geometry.spherical.oned.Arc double double double double org.apache.commons.math3.geometry.spherical.twod.Vertex
      StackMap stack:
            dconst_0
            dstore 16 /* alreadyManagedLength */
        start local 16 // double alreadyManagedLength
        11: .line 149
            dload 11 /* unwrappedEnd */
            dconst_0
            dcmpl
            iflt 17
        12: .line 151
            aload 0 /* this */
            aload 15 /* previousVertex */
        13: .line 152
            new org.apache.commons.math3.geometry.spherical.twod.Vertex
            dup
            new org.apache.commons.math3.geometry.spherical.twod.S2Point
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            dload 4 /* edgeStart */
            dload 11 /* unwrappedEnd */
            dadd
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPointAt:(D)Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            invokespecial org.apache.commons.math3.geometry.spherical.twod.S2Point.<init>:(Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;)V
            invokespecial org.apache.commons.math3.geometry.spherical.twod.Vertex.<init>:(Lorg/apache/commons/math3/geometry/spherical/twod/S2Point;)V
        14: .line 153
            dload 11 /* unwrappedEnd */
            aload 3 /* insideList */
            aload 1 /* splitCircle */
        15: .line 151
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        16: .line 154
            dload 11 /* unwrappedEnd */
            dstore 16 /* alreadyManagedLength */
        17: .line 157
      StackMap locals: double
      StackMap stack:
            dload 7 /* arcRelativeStart */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 13 /* tolerance */
            dsub
            dcmpl
            iflt 25
        18: .line 159
            dload 11 /* unwrappedEnd */
            dconst_0
            dcmpl
            iflt 23
        19: .line 160
            aload 0 /* this */
            aload 15 /* previousVertex */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
        20: .line 161
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 16 /* alreadyManagedLength */
            dsub
            aload 2 /* outsideList */
            aload 1 /* splitCircle */
        21: .line 160
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        22: .line 162
            goto 43
        23: .line 165
      StackMap locals:
      StackMap stack:
            aload 2 /* outsideList */
            aload 0 /* this */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        24: .line 167
            goto 43
        25: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 15 /* previousVertex */
        26: .line 170
            new org.apache.commons.math3.geometry.spherical.twod.Vertex
            dup
            new org.apache.commons.math3.geometry.spherical.twod.S2Point
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            dload 4 /* edgeStart */
            dload 7 /* arcRelativeStart */
            dadd
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPointAt:(D)Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            invokespecial org.apache.commons.math3.geometry.spherical.twod.S2Point.<init>:(Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;)V
            invokespecial org.apache.commons.math3.geometry.spherical.twod.Vertex.<init>:(Lorg/apache/commons/math3/geometry/spherical/twod/S2Point;)V
        27: .line 171
            dload 7 /* arcRelativeStart */
            dload 16 /* alreadyManagedLength */
            dsub
            aload 2 /* outsideList */
            aload 1 /* splitCircle */
        28: .line 169
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        29: .line 172
            dload 7 /* arcRelativeStart */
            dstore 16 /* alreadyManagedLength */
        30: .line 174
            dload 9 /* arcRelativeEnd */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 13 /* tolerance */
            dsub
            dcmpl
            iflt 35
        31: .line 176
            aload 0 /* this */
            aload 15 /* previousVertex */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
        32: .line 177
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 16 /* alreadyManagedLength */
            dsub
            aload 3 /* insideList */
            aload 1 /* splitCircle */
        33: .line 176
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        34: .line 178
            goto 43
        35: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 15 /* previousVertex */
        36: .line 181
            new org.apache.commons.math3.geometry.spherical.twod.Vertex
            dup
            new org.apache.commons.math3.geometry.spherical.twod.S2Point
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            dload 4 /* edgeStart */
            dload 7 /* arcRelativeStart */
            dadd
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getPointAt:(D)Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;
            invokespecial org.apache.commons.math3.geometry.spherical.twod.S2Point.<init>:(Lorg/apache/commons/math3/geometry/euclidean/threed/Vector3D;)V
            invokespecial org.apache.commons.math3.geometry.spherical.twod.Vertex.<init>:(Lorg/apache/commons/math3/geometry/spherical/twod/S2Point;)V
        37: .line 182
            dload 7 /* arcRelativeStart */
            dload 16 /* alreadyManagedLength */
            dsub
            aload 3 /* insideList */
            aload 1 /* splitCircle */
        38: .line 180
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        39: .line 183
            dload 7 /* arcRelativeStart */
            dstore 16 /* alreadyManagedLength */
        40: .line 184
            aload 0 /* this */
            aload 15 /* previousVertex */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.end:Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
        41: .line 185
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.length:D
            dload 16 /* alreadyManagedLength */
            dsub
            aload 2 /* outsideList */
            aload 1 /* splitCircle */
        42: .line 184
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Edge.addSubEdge:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            astore 15 /* previousVertex */
        end local 16 // double alreadyManagedLength
        43: .line 191
      StackMap locals:
      StackMap stack:
            return
        end local 15 // org.apache.commons.math3.geometry.spherical.twod.Vertex previousVertex
        end local 13 // double tolerance
        end local 11 // double unwrappedEnd
        end local 9 // double arcRelativeEnd
        end local 7 // double arcRelativeStart
        end local 6 // org.apache.commons.math3.geometry.spherical.oned.Arc arc
        end local 4 // double edgeStart
        end local 3 // java.util.List insideList
        end local 2 // java.util.List outsideList
        end local 1 // org.apache.commons.math3.geometry.spherical.twod.Circle splitCircle
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   44     0                  this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
            0   44     1           splitCircle  Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            0   44     2           outsideList  Ljava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;
            0   44     3            insideList  Ljava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;
            1   44     4             edgeStart  D
            2   44     6                   arc  Lorg/apache/commons/math3/geometry/spherical/oned/Arc;
            3   44     7      arcRelativeStart  D
            4   44     9        arcRelativeEnd  D
            5   44    11          unwrappedEnd  D
            6   44    13             tolerance  D
            7   44    15        previousVertex  Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
           11   43    16  alreadyManagedLength  D
    Signature: (Lorg/apache/commons/math3/geometry/spherical/twod/Circle;Ljava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;Ljava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;)V
    MethodParameters:
             Name  Flags
      splitCircle  final
      outsideList  final
      insideList   final

  private org.apache.commons.math3.geometry.spherical.twod.Vertex addSubEdge(org.apache.commons.math3.geometry.spherical.twod.Vertex, org.apache.commons.math3.geometry.spherical.twod.Vertex, double, java.util.List<org.apache.commons.math3.geometry.spherical.twod.Edge>, org.apache.commons.math3.geometry.spherical.twod.Circle);
    descriptor: (Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=6
        start local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
        start local 1 // org.apache.commons.math3.geometry.spherical.twod.Vertex subStart
        start local 2 // org.apache.commons.math3.geometry.spherical.twod.Vertex subEnd
        start local 3 // double subLength
        start local 5 // java.util.List list
        start local 6 // org.apache.commons.math3.geometry.spherical.twod.Circle splitCircle
         0: .line 209
            dload 3 /* subLength */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Circle.getTolerance:()D
            dcmpg
            ifgt 2
         1: .line 211
            aload 1 /* subStart */
            areturn
         2: .line 215
      StackMap locals:
      StackMap stack:
            aload 2 /* subEnd */
            aload 6 /* splitCircle */
            invokevirtual org.apache.commons.math3.geometry.spherical.twod.Vertex.bindWith:(Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)V
         3: .line 216
            new org.apache.commons.math3.geometry.spherical.twod.Edge
            dup
            aload 1 /* subStart */
            aload 2 /* subEnd */
            dload 3 /* subLength */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.spherical.twod.Edge.circle:Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            invokespecial org.apache.commons.math3.geometry.spherical.twod.Edge.<init>:(Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLorg/apache/commons/math3/geometry/spherical/twod/Circle;)V
            astore 7 /* edge */
        start local 7 // org.apache.commons.math3.geometry.spherical.twod.Edge edge
         4: .line 217
            aload 5 /* list */
            aload 7 /* edge */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 218
            aload 2 /* subEnd */
            areturn
        end local 7 // org.apache.commons.math3.geometry.spherical.twod.Edge edge
        end local 6 // org.apache.commons.math3.geometry.spherical.twod.Circle splitCircle
        end local 5 // java.util.List list
        end local 3 // double subLength
        end local 2 // org.apache.commons.math3.geometry.spherical.twod.Vertex subEnd
        end local 1 // org.apache.commons.math3.geometry.spherical.twod.Vertex subStart
        end local 0 // org.apache.commons.math3.geometry.spherical.twod.Edge this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
            0    6     1     subStart  Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            0    6     2       subEnd  Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
            0    6     3    subLength  D
            0    6     5         list  Ljava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;
            0    6     6  splitCircle  Lorg/apache/commons/math3/geometry/spherical/twod/Circle;
            4    6     7         edge  Lorg/apache/commons/math3/geometry/spherical/twod/Edge;
    Signature: (Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;DLjava/util/List<Lorg/apache/commons/math3/geometry/spherical/twod/Edge;>;Lorg/apache/commons/math3/geometry/spherical/twod/Circle;)Lorg/apache/commons/math3/geometry/spherical/twod/Vertex;
    MethodParameters:
             Name  Flags
      subStart     final
      subEnd       final
      subLength    final
      list         final
      splitCircle  final
}
SourceFile: "Edge.java"