class org.apache.lucene.spatial3d.geom.GeoDegeneratePath extends org.apache.lucene.spatial3d.geom.GeoBasePath
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.spatial3d.geom.GeoDegeneratePath
  super_class: org.apache.lucene.spatial3d.geom.GeoBasePath
{
  protected final java.util.List<org.apache.lucene.spatial3d.geom.GeoPoint> points;
    descriptor: Ljava/util/List;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Ljava/util/List<Lorg/apache/lucene/spatial3d/geom/GeoPoint;>;

  protected java.util.List<org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint> endPoints;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;>;

  protected java.util.List<org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment> segments;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;>;

  protected org.apache.lucene.spatial3d.geom.GeoPoint[] edgePoints;
    descriptor: [Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x0004) ACC_PROTECTED

  protected boolean isDone;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  public void <init>(org.apache.lucene.spatial3d.geom.PlanetModel, org.apache.lucene.spatial3d.geom.GeoPoint[]);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/PlanetModel;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint[] pathPoints
         0: .line 58
            aload 0 /* this */
            aload 1 /* planetModel */
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;)V
         1: .line 59
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            aload 2 /* pathPoints */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
         2: .line 60
            aload 0 /* this */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath.done:()V
         3: .line 61
            return
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint[] pathPoints
        end local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    4     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0    4     2   pathPoints  [Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    MethodParameters:
             Name  Flags
      planetModel  final
      pathPoints   final

  public void <init>(org.apache.lucene.spatial3d.geom.PlanetModel);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/PlanetModel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
         0: .line 67
            aload 0 /* this */
            aload 1 /* planetModel */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBasePath.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;)V
         1: .line 40
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
         2: .line 51
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.isDone:Z
         3: .line 68
            return
        end local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    4     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
    MethodParameters:
             Name  Flags
      planetModel  final

  public void addPoint(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // double lat
        start local 3 // double lon
         0: .line 75
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.isDone:Z
            ifeq 2
         1: .line 76
            new java.lang.IllegalStateException
            dup
            ldc "Can't call addPoint() if done() already called"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            new org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            dload 1 /* lat */
            dload 3 /* lon */
            invokespecial org.apache.lucene.spatial3d.geom.GeoPoint.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DD)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 78
            return
        end local 3 // double lon
        end local 1 // double lat
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    4     1   lat  D
            0    4     3   lon  D
    MethodParameters:
      Name  Flags
      lat   final
      lon   final

  public void done();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
         0: .line 83
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.isDone:Z
            ifeq 2
         1: .line 84
            new java.lang.IllegalStateException
            dup
            ldc "Can't call done() twice"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ifne 4
         3: .line 86
            new java.lang.IllegalArgumentException
            dup
            ldc "Path must have at least one point"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.isDone:Z
         5: .line 89
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
         6: .line 90
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
         7: .line 93
            aconst_null
            astore 1 /* lastPoint */
        start local 1 // org.apache.lucene.spatial3d.geom.GeoPoint lastPoint
         8: .line 94
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 16
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.GeoPoint top java.util.Iterator
      StackMap stack:
         9: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoPoint
            astore 2 /* end */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint end
        10: .line 95
            aload 1 /* lastPoint */
            ifnull 15
        11: .line 96
            new org.apache.lucene.spatial3d.geom.Plane
            dup
            aload 1 /* lastPoint */
            aload 2 /* end */
            invokespecial org.apache.lucene.spatial3d.geom.Plane.<init>:(Lorg/apache/lucene/spatial3d/geom/Vector;Lorg/apache/lucene/spatial3d/geom/Vector;)V
            astore 4 /* normalizedConnectingPlane */
        start local 4 // org.apache.lucene.spatial3d.geom.Plane normalizedConnectingPlane
        12: .line 97
            aload 4 /* normalizedConnectingPlane */
            ifnonnull 14
        13: .line 98
            goto 16
        14: .line 100
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.GeoPoint org.apache.lucene.spatial3d.geom.GeoPoint java.util.Iterator org.apache.lucene.spatial3d.geom.Plane
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            new org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* lastPoint */
            aload 2 /* end */
            aload 4 /* normalizedConnectingPlane */
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/GeoPoint;Lorg/apache/lucene/spatial3d/geom/GeoPoint;Lorg/apache/lucene/spatial3d/geom/Plane;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.apache.lucene.spatial3d.geom.Plane normalizedConnectingPlane
        15: .line 102
      StackMap locals:
      StackMap stack:
            aload 2 /* end */
            astore 1 /* lastPoint */
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint end
        16: .line 94
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.GeoPoint top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        17: .line 105
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ifne 23
        18: .line 107
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoPoint
            astore 2 /* point */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint point
        19: .line 109
            new org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            dup
            aload 2 /* point */
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.<init>:(Lorg/apache/lucene/spatial3d/geom/GeoPoint;)V
            astore 3 /* onlyEndpoint */
        start local 3 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint onlyEndpoint
        20: .line 110
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            aload 3 /* onlyEndpoint */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        21: .line 111
            aload 0 /* this */
            iconst_1
            anewarray org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            iconst_0
            aload 2 /* point */
            aastore
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.edgePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        22: .line 112
            return
        end local 3 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint onlyEndpoint
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint point
        23: .line 116
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.GeoPoint
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        24: goto 38
        25: .line 117
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 3 /* currentSegment */
        start local 3 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment currentSegment
        26: .line 119
            iload 2 /* i */
            ifne 33
        27: .line 121
            new org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            dup
            aload 3 /* currentSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.start:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        28: .line 122
            aload 3 /* currentSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.startCutoffPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
        29: .line 121
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.<init>:(Lorg/apache/lucene/spatial3d/geom/GeoPoint;Lorg/apache/lucene/spatial3d/geom/SidedPlane;)V
            astore 4 /* startEndpoint */
        start local 4 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint startEndpoint
        30: .line 123
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            aload 4 /* startEndpoint */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        31: .line 124
            aload 0 /* this */
            iconst_1
            anewarray org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            iconst_0
            aload 3 /* currentSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.start:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            aastore
            putfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.edgePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        32: .line 125
            goto 37
        end local 4 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint startEndpoint
        33: .line 128
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            new org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            dup
            aload 3 /* currentSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.start:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        34: .line 129
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            iload 2 /* i */
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.endCutoffPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
        35: .line 130
            aload 3 /* currentSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.startCutoffPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.<init>:(Lorg/apache/lucene/spatial3d/geom/GeoPoint;Lorg/apache/lucene/spatial3d/geom/SidedPlane;Lorg/apache/lucene/spatial3d/geom/SidedPlane;)V
        36: .line 128
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment currentSegment
        37: .line 116
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        38: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 25
        end local 2 // int i
        39: .line 133
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 2 /* lastSegment */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment lastSegment
        40: .line 134
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            new org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            dup
            aload 2 /* lastSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.end:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        41: .line 135
            aload 2 /* lastSegment */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.endCutoffPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.<init>:(Lorg/apache/lucene/spatial3d/geom/GeoPoint;Lorg/apache/lucene/spatial3d/geom/SidedPlane;)V
        42: .line 134
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        43: .line 137
            return
        end local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment lastSegment
        end local 1 // org.apache.lucene.spatial3d.geom.GeoPoint lastPoint
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0   44     0                       this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            8   44     1                  lastPoint  Lorg/apache/lucene/spatial3d/geom/GeoPoint;
           10   16     2                        end  Lorg/apache/lucene/spatial3d/geom/GeoPoint;
           12   15     4  normalizedConnectingPlane  Lorg/apache/lucene/spatial3d/geom/Plane;
           19   23     2                      point  Lorg/apache/lucene/spatial3d/geom/GeoPoint;
           20   23     3               onlyEndpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
           24   39     2                          i  I
           26   37     3             currentSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
           30   33     4              startEndpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
           40   44     2                lastSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;

  public void <init>(org.apache.lucene.spatial3d.geom.PlanetModel, java.io.InputStream);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/PlanetModel;Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // java.io.InputStream inputStream
         0: .line 145
            aload 0 /* this */
            aload 1 /* planetModel */
         1: .line 146
            aload 1 /* planetModel */
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readPointArray:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Ljava/io/InputStream;)[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            invokespecial org.apache.lucene.spatial3d.geom.GeoDegeneratePath.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;)V
         2: .line 147
            return
        end local 2 // java.io.InputStream inputStream
        end local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    3     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0    3     2  inputStream  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      planetModel  final
      inputStream  final

  public void write(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // java.io.OutputStream outputStream
         0: .line 151
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writePointArray:(Ljava/io/OutputStream;Ljava/util/List;)V
         1: .line 152
            return
        end local 1 // java.io.OutputStream outputStream
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    2     1  outputStream  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      outputStream  final

  public double computePathCenterDistance(org.apache.lucene.spatial3d.geom.DistanceStyle, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=14, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 2 // double x
        start local 4 // double y
        start local 6 // double z
         0: .line 157
            ldc Infinity
            dstore 8 /* closestDistance */
        start local 8 // double closestDistance
         1: .line 159
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 11
            goto 6
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double top java.util.Iterator
      StackMap stack:
         2: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 10 /* segment */
        start local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
         3: .line 160
            aload 10 /* segment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.pathCenterDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 12 /* segmentDistance */
        start local 12 // double segmentDistance
         4: .line 161
            dload 12 /* segmentDistance */
            dload 8 /* closestDistance */
            dcmpg
            ifge 6
         5: .line 162
            dload 12 /* segmentDistance */
            dstore 8 /* closestDistance */
        end local 12 // double segmentDistance
        end local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
         6: .line 159
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 166
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 11
            goto 12
      StackMap locals:
      StackMap stack:
         8: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            astore 10 /* endpoint */
        start local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
         9: .line 167
            aload 10 /* endpoint */
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.pathCenterDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 12 /* endpointDistance */
        start local 12 // double endpointDistance
        10: .line 168
            dload 12 /* endpointDistance */
            dload 8 /* closestDistance */
            dcmpg
            ifge 12
        11: .line 169
            dload 12 /* endpointDistance */
            dstore 8 /* closestDistance */
        end local 12 // double endpointDistance
        end local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
        12: .line 166
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        13: .line 172
            dload 8 /* closestDistance */
            dreturn
        end local 8 // double closestDistance
        end local 6 // double z
        end local 4 // double y
        end local 2 // double x
        end local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   14     0              this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0   14     1     distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0   14     2                 x  D
            0   14     4                 y  D
            0   14     6                 z  D
            1   14     8   closestDistance  D
            3    6    10           segment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
            4    6    12   segmentDistance  D
            9   12    10          endpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
           10   12    12  endpointDistance  D
    MethodParameters:
               Name  Flags
      distanceStyle  final
      x              final
      y              final
      z              final

  public double computeNearestDistance(org.apache.lucene.spatial3d.geom.DistanceStyle, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=22, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 2 // double x
        start local 4 // double y
        start local 6 // double z
         0: .line 177
            dconst_0
            dstore 8 /* currentDistance */
        start local 8 // double currentDistance
         1: .line 178
            ldc Infinity
            dstore 10 /* minPathCenterDistance */
        start local 10 // double minPathCenterDistance
         2: .line 179
            ldc Infinity
            dstore 12 /* bestDistance */
        start local 12 // double bestDistance
         3: .line 180
            iconst_0
            istore 14 /* segmentIndex */
        start local 14 // int segmentIndex
         4: .line 182
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 16
            goto 17
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double double double int top java.util.Iterator
      StackMap stack:
         5: aload 16
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            astore 15 /* endpoint */
        start local 15 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
         6: .line 183
            aload 15 /* endpoint */
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.pathCenterDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 17 /* endpointPathCenterDistance */
        start local 17 // double endpointPathCenterDistance
         7: .line 184
            dload 17 /* endpointPathCenterDistance */
            dload 10 /* minPathCenterDistance */
            dcmpg
            ifge 10
         8: .line 186
            dload 17 /* endpointPathCenterDistance */
            dstore 10 /* minPathCenterDistance */
         9: .line 187
            dload 8 /* currentDistance */
            dstore 12 /* bestDistance */
        10: .line 190
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double double double int org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint java.util.Iterator double
      StackMap stack:
            iload 14 /* segmentIndex */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 17
        11: .line 191
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            iload 14 /* segmentIndex */
            iinc 14 /* segmentIndex */ 1
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 19 /* segment */
        start local 19 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
        12: .line 192
            aload 19 /* segment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.pathCenterDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 20 /* segmentPathCenterDistance */
        start local 20 // double segmentPathCenterDistance
        13: .line 193
            dload 20 /* segmentPathCenterDistance */
            dload 10 /* minPathCenterDistance */
            dcmpg
            ifge 16
        14: .line 194
            dload 20 /* segmentPathCenterDistance */
            dstore 10 /* minPathCenterDistance */
        15: .line 195
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            aload 19 /* segment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.nearestPathDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            dstore 12 /* bestDistance */
        16: .line 197
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment double
      StackMap stack:
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            aload 19 /* segment */
            aload 1 /* distanceStyle */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.fullPathDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            dstore 8 /* currentDistance */
        end local 20 // double segmentPathCenterDistance
        end local 19 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
        end local 17 // double endpointPathCenterDistance
        end local 15 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
        17: .line 182
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double double double int top java.util.Iterator
      StackMap stack:
            aload 16
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        18: .line 200
            dload 12 /* bestDistance */
            dreturn
        end local 14 // int segmentIndex
        end local 12 // double bestDistance
        end local 10 // double minPathCenterDistance
        end local 8 // double currentDistance
        end local 6 // double z
        end local 4 // double y
        end local 2 // double x
        end local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   19     0                        this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0   19     1               distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0   19     2                           x  D
            0   19     4                           y  D
            0   19     6                           z  D
            1   19     8             currentDistance  D
            2   19    10       minPathCenterDistance  D
            3   19    12                bestDistance  D
            4   19    14                segmentIndex  I
            6   17    15                    endpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
            7   17    17  endpointPathCenterDistance  D
           12   17    19                     segment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
           13   17    20   segmentPathCenterDistance  D
    MethodParameters:
               Name  Flags
      distanceStyle  final
      x              final
      y              final
      z              final

  protected double distance(org.apache.lucene.spatial3d.geom.DistanceStyle, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=15, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 2 // double x
        start local 4 // double y
        start local 6 // double z
         0: .line 208
            dconst_0
            dstore 8 /* currentDistance */
        start local 8 // double currentDistance
         1: .line 209
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 11
            goto 7
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double top java.util.Iterator
      StackMap stack:
         2: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 10 /* segment */
        start local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
         3: .line 210
            aload 10 /* segment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.pathDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 12 /* distance */
        start local 12 // double distance
         4: .line 211
            dload 12 /* distance */
            ldc Infinity
            dcmpl
            ifeq 6
         5: .line 212
            aload 1 /* distanceStyle */
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            dload 12 /* distance */
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.fromAggregationForm:(D)D
            dreturn
         6: .line 213
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment java.util.Iterator double
      StackMap stack:
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            aload 10 /* segment */
            aload 1 /* distanceStyle */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.fullPathDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            dstore 8 /* currentDistance */
        end local 12 // double distance
        end local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
         7: .line 209
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double top java.util.Iterator
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         8: .line 216
            iconst_0
            istore 10 /* segmentIndex */
        start local 10 // int segmentIndex
         9: .line 217
            dconst_0
            dstore 8 /* currentDistance */
        10: .line 218
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 12
            goto 17
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double int top java.util.Iterator
      StackMap stack:
        11: aload 12
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            astore 11 /* endpoint */
        start local 11 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
        12: .line 219
            aload 11 /* endpoint */
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.pathDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 13 /* distance */
        start local 13 // double distance
        13: .line 220
            dload 13 /* distance */
            ldc Infinity
            dcmpl
            ifeq 15
        14: .line 221
            aload 1 /* distanceStyle */
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            dload 13 /* distance */
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.fromAggregationForm:(D)D
            dreturn
        15: .line 222
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double int org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint java.util.Iterator double
      StackMap stack:
            iload 10 /* segmentIndex */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 17
        16: .line 223
            aload 1 /* distanceStyle */
            dload 8 /* currentDistance */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            iload 10 /* segmentIndex */
            iinc 10 /* segmentIndex */ 1
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            aload 1 /* distanceStyle */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.fullPathDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;)D
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.aggregateDistances:(DD)D
            dstore 8 /* currentDistance */
        end local 13 // double distance
        end local 11 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
        17: .line 218
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double int top java.util.Iterator
      StackMap stack:
            aload 12
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 11
        18: .line 226
            ldc Infinity
            dreturn
        end local 10 // int segmentIndex
        end local 8 // double currentDistance
        end local 6 // double z
        end local 4 // double y
        end local 2 // double x
        end local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   19     0             this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0   19     1    distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0   19     2                x  D
            0   19     4                y  D
            0   19     6                z  D
            1   19     8  currentDistance  D
            3    7    10          segment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
            4    7    12         distance  D
            9   19    10     segmentIndex  I
           12   17    11         endpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
           13   17    13         distance  D
    MethodParameters:
               Name  Flags
      distanceStyle  final
      x              final
      y              final
      z              final

  protected double deltaDistance(org.apache.lucene.spatial3d.geom.DistanceStyle, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=8, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 2 // double x
        start local 4 // double y
        start local 6 // double z
         0: .line 232
            dconst_0
            dreturn
        end local 6 // double z
        end local 4 // double y
        end local 2 // double x
        end local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    1     1  distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0    1     2              x  D
            0    1     4              y  D
            0    1     6              z  D
    MethodParameters:
               Name  Flags
      distanceStyle  final
      x              final
      y              final
      z              final

  protected void distanceBounds(org.apache.lucene.spatial3d.geom.Bounds, org.apache.lucene.spatial3d.geom.DistanceStyle, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/Bounds;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;D)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
        start local 2 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 3 // double distanceValue
         0: .line 238
            aload 0 /* this */
            aload 1 /* bounds */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath.getBounds:(Lorg/apache/lucene/spatial3d/geom/Bounds;)V
         1: .line 239
            return
        end local 3 // double distanceValue
        end local 2 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    2     1         bounds  Lorg/apache/lucene/spatial3d/geom/Bounds;
            0    2     2  distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0    2     3  distanceValue  D
    MethodParameters:
               Name  Flags
      bounds         final
      distanceStyle  final
      distanceValue  final

  protected double outsideDistance(org.apache.lucene.spatial3d.geom.DistanceStyle, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=14, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        start local 2 // double x
        start local 4 // double y
        start local 6 // double z
         0: .line 243
            ldc Infinity
            dstore 8 /* minDistance */
        start local 8 // double minDistance
         1: .line 244
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 11
            goto 6
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.DistanceStyle double double double double top java.util.Iterator
      StackMap stack:
         2: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            astore 10 /* endpoint */
        start local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
         3: .line 245
            aload 10 /* endpoint */
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.outsideDistance:(Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 12 /* newDistance */
        start local 12 // double newDistance
         4: .line 246
            dload 12 /* newDistance */
            dload 8 /* minDistance */
            dcmpg
            ifge 6
         5: .line 247
            dload 12 /* newDistance */
            dstore 8 /* minDistance */
        end local 12 // double newDistance
        end local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint endpoint
         6: .line 244
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 249
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 11
            goto 12
      StackMap locals:
      StackMap stack:
         8: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 10 /* segment */
        start local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
         9: .line 250
            aload 10 /* segment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* distanceStyle */
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.outsideDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/DistanceStyle;DDD)D
            dstore 12 /* newDistance */
        start local 12 // double newDistance
        10: .line 251
            dload 12 /* newDistance */
            dload 8 /* minDistance */
            dcmpg
            ifge 12
        11: .line 252
            dload 12 /* newDistance */
            dstore 8 /* minDistance */
        end local 12 // double newDistance
        end local 10 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment segment
        12: .line 249
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        13: .line 254
            dload 8 /* minDistance */
            dreturn
        end local 8 // double minDistance
        end local 6 // double z
        end local 4 // double y
        end local 2 // double x
        end local 1 // org.apache.lucene.spatial3d.geom.DistanceStyle distanceStyle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0   14     1  distanceStyle  Lorg/apache/lucene/spatial3d/geom/DistanceStyle;
            0   14     2              x  D
            0   14     4              y  D
            0   14     6              z  D
            1   14     8    minDistance  D
            3    6    10       endpoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
            4    6    12    newDistance  D
            9   12    10        segment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
           10   12    12    newDistance  D
    MethodParameters:
               Name  Flags
      distanceStyle  final
      x              final
      y              final
      z              final

  public boolean isWithin(double, double, double);
    descriptor: (DDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // double x
        start local 3 // double y
        start local 5 // double z
         0: .line 259
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 8
            goto 4
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath double double double top java.util.Iterator
      StackMap stack:
         1: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            astore 7 /* pathPoint */
        start local 7 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint pathPoint
         2: .line 260
            aload 7 /* pathPoint */
            dload 1 /* x */
            dload 3 /* y */
            dload 5 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.isWithin:(DDD)Z
            ifeq 4
         3: .line 261
            iconst_1
            ireturn
        end local 7 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint pathPoint
         4: .line 259
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 264
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 8
            goto 9
      StackMap locals:
      StackMap stack:
         6: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 7 /* pathSegment */
        start local 7 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         7: .line 265
            aload 7 /* pathSegment */
            dload 1 /* x */
            dload 3 /* y */
            dload 5 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.isWithin:(DDD)Z
            ifeq 9
         8: .line 266
            iconst_1
            ireturn
        end local 7 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         9: .line 264
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        10: .line 269
            iconst_0
            ireturn
        end local 5 // double z
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0   11     1            x  D
            0   11     3            y  D
            0   11     5            z  D
            2    4     7    pathPoint  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$SegmentEndpoint;
            7    9     7  pathSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
    MethodParameters:
      Name  Flags
      x     final
      y     final
      z     final

  public org.apache.lucene.spatial3d.geom.GeoPoint[] getEdgePoints();
    descriptor: ()[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
         0: .line 274
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.edgePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            areturn
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;

  public boolean intersects(org.apache.lucene.spatial3d.geom.Plane, org.apache.lucene.spatial3d.geom.GeoPoint[], org.apache.lucene.spatial3d.geom.Membership[]);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/Membership;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.Plane plane
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint[] notablePoints
        start local 3 // org.apache.lucene.spatial3d.geom.Membership[] bounds
         0: .line 292
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 2
         1: .line 293
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* plane */
            aload 2 /* notablePoints */
            aload 3 /* bounds */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.intersects:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/Membership;)Z
            ireturn
         2: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.Plane org.apache.lucene.spatial3d.geom.GeoPoint[] org.apache.lucene.spatial3d.geom.Membership[] top java.util.Iterator
      StackMap stack:
         3: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 4 /* pathSegment */
        start local 4 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         4: .line 297
            aload 4 /* pathSegment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* plane */
            aload 2 /* notablePoints */
            aload 3 /* bounds */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.intersects:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/Membership;)Z
            ifeq 6
         5: .line 298
            iconst_1
            ireturn
        end local 4 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         6: .line 296
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 302
            iconst_0
            ireturn
        end local 3 // org.apache.lucene.spatial3d.geom.Membership[] bounds
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint[] notablePoints
        end local 1 // org.apache.lucene.spatial3d.geom.Plane plane
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    8     1          plane  Lorg/apache/lucene/spatial3d/geom/Plane;
            0    8     2  notablePoints  [Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            0    8     3         bounds  [Lorg/apache/lucene/spatial3d/geom/Membership;
            4    6     4    pathSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
    MethodParameters:
               Name  Flags
      plane          final
      notablePoints  final
      bounds         final

  public boolean intersects(org.apache.lucene.spatial3d.geom.GeoShape);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/GeoShape;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.GeoShape geoShape
         0: .line 309
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 2
         1: .line 310
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            aload 1 /* geoShape */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.intersects:(Lorg/apache/lucene/spatial3d/geom/GeoShape;)Z
            ireturn
         2: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.GeoShape top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 2 /* pathSegment */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         4: .line 314
            aload 2 /* pathSegment */
            aload 1 /* geoShape */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.intersects:(Lorg/apache/lucene/spatial3d/geom/GeoShape;)Z
            ifeq 6
         5: .line 315
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         6: .line 313
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 319
            iconst_0
            ireturn
        end local 1 // org.apache.lucene.spatial3d.geom.GeoShape geoShape
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    8     1     geoShape  Lorg/apache/lucene/spatial3d/geom/GeoShape;
            4    6     2  pathSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
    MethodParameters:
          Name  Flags
      geoShape  

  public void getBounds(org.apache.lucene.spatial3d.geom.Bounds);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/Bounds;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
         0: .line 324
            aload 0 /* this */
            aload 1 /* bounds */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBasePath.getBounds:(Lorg/apache/lucene/spatial3d/geom/Bounds;)V
         1: .line 328
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.segments:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.Bounds top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment
            astore 2 /* pathSegment */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         3: .line 329
            aload 2 /* pathSegment */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* bounds */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment.getBounds:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Bounds;)V
        end local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment pathSegment
         4: .line 328
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 331
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 7
         6: .line 332
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.endPoints:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 1 /* bounds */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint.getBounds:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Bounds;)V
         7: .line 334
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath org.apache.lucene.spatial3d.geom.Bounds
      StackMap stack:
            return
        end local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    8     1       bounds  Lorg/apache/lucene/spatial3d/geom/Bounds;
            3    4     2  pathSegment  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath$PathSegment;
    MethodParameters:
        Name  Flags
      bounds  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
        start local 1 // java.lang.Object o
         0: .line 338
            aload 1 /* o */
            instanceof org.apache.lucene.spatial3d.geom.GeoDegeneratePath
            ifne 2
         1: .line 339
            iconst_0
            ireturn
         2: .line 340
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.spatial3d.geom.GeoDegeneratePath
            astore 2 /* p */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath p
         3: .line 341
            aload 0 /* this */
            aload 2 /* p */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBasePath.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 342
            iconst_0
            ireturn
         5: .line 343
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoDegeneratePath
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            aload 2 /* p */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath p
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            0    6     1     o  Ljava/lang/Object;
            3    6     2     p  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
         0: .line 348
            aload 0 /* this */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBasePath.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 349
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokeinterface java.util.List.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 350
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
            1    3     1  result  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
         0: .line 355
            new java.lang.StringBuilder
            dup
            ldc "GeoDegeneratePath: {planetmodel="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", points={"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoDegeneratePath.points:Ljava/util/List;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "}}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.spatial3d.geom.GeoDegeneratePath this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoDegeneratePath;
}
SourceFile: "GeoDegeneratePath.java"
NestMembers:
  org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment  org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint
InnerClasses:
  private PathSegment = org.apache.lucene.spatial3d.geom.GeoDegeneratePath$PathSegment of org.apache.lucene.spatial3d.geom.GeoDegeneratePath
  private SegmentEndpoint = org.apache.lucene.spatial3d.geom.GeoDegeneratePath$SegmentEndpoint of org.apache.lucene.spatial3d.geom.GeoDegeneratePath