class org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone extends org.apache.lucene.spatial3d.geom.GeoBaseBBox
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone
  super_class: org.apache.lucene.spatial3d.geom.GeoBaseBBox
{
  protected final double topLat;
    descriptor: D
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final double cosTopLat;
    descriptor: D
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final org.apache.lucene.spatial3d.geom.SidedPlane topPlane;
    descriptor: Lorg/apache/lucene/spatial3d/geom/SidedPlane;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final org.apache.lucene.spatial3d.geom.GeoPoint interiorPoint;
    descriptor: Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected static final org.apache.lucene.spatial3d.geom.GeoPoint[] planePoints;
    descriptor: [Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected final org.apache.lucene.spatial3d.geom.GeoPoint topBoundaryPoint;
    descriptor: Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 38
            iconst_0
            anewarray org.apache.lucene.spatial3d.geom.GeoPoint
            putstatic org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.apache.lucene.spatial3d.geom.PlanetModel, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/PlanetModel;D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=14, locals=10, args_size=3
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // double topLat
         0: .line 49
            aload 0 /* this */
            aload 1 /* planetModel */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBaseBBox.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;)V
         1: .line 50
            aload 0 /* this */
            dload 2 /* topLat */
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
         2: .line 52
            dload 2 /* topLat */
            invokestatic java.lang.Math.sin:(D)D
            dstore 4 /* sinTopLat */
        start local 4 // double sinTopLat
         3: .line 53
            aload 0 /* this */
            dload 2 /* topLat */
            invokestatic java.lang.Math.cos:(D)D
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.cosTopLat:D
         4: .line 56
            dload 2 /* topLat */
            ldc 1.5707963267948966
            dsub
            ldc 0.5
            dmul
            dstore 6 /* middleLat */
        start local 6 // double middleLat
         5: .line 57
            dload 6 /* middleLat */
            invokestatic java.lang.Math.sin:(D)D
            dstore 8 /* sinMiddleLat */
        start local 8 // double sinMiddleLat
         6: .line 58
            aload 0 /* this */
            new org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            aload 1 /* planetModel */
            dload 8 /* sinMiddleLat */
            dconst_0
            dconst_1
            dload 8 /* sinMiddleLat */
            dload 8 /* sinMiddleLat */
            dmul
            dsub
            invokestatic java.lang.Math.sqrt:(D)D
            dconst_1
            invokespecial org.apache.lucene.spatial3d.geom.GeoPoint.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DDDD)V
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.interiorPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
         7: .line 59
            aload 0 /* this */
            new org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            aload 1 /* planetModel */
            dload 4 /* sinTopLat */
            dconst_0
            dconst_1
            dload 4 /* sinTopLat */
            dload 4 /* sinTopLat */
            dmul
            dsub
            invokestatic java.lang.Math.sqrt:(D)D
            dconst_1
            invokespecial org.apache.lucene.spatial3d.geom.GeoPoint.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DDDD)V
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topBoundaryPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
         8: .line 61
            aload 0 /* this */
            new org.apache.lucene.spatial3d.geom.SidedPlane
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.interiorPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            aload 1 /* planetModel */
            dload 4 /* sinTopLat */
            invokespecial org.apache.lucene.spatial3d.geom.SidedPlane.<init>:(Lorg/apache/lucene/spatial3d/geom/Vector;Lorg/apache/lucene/spatial3d/geom/PlanetModel;D)V
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
         9: .line 63
            aload 0 /* this */
            iconst_1
            anewarray org.apache.lucene.spatial3d.geom.GeoPoint
            dup
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topBoundaryPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            aastore
            putfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.edgePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        10: .line 64
            return
        end local 8 // double sinMiddleLat
        end local 6 // double middleLat
        end local 4 // double sinTopLat
        end local 2 // double topLat
        end local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0   11     1   planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0   11     2        topLat  D
            3   11     4     sinTopLat  D
            5   11     6     middleLat  D
            6   11     8  sinMiddleLat  D
    MethodParameters:
             Name  Flags
      planetModel  final
      topLat       final

  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.GeoSouthLatitudeZone this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // java.io.InputStream inputStream
         0: .line 72
            aload 0 /* this */
            aload 1 /* planetModel */
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readDouble:(Ljava/io/InputStream;)D
            invokespecial org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;D)V
         1: .line 73
            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.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    2     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0    2     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=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // java.io.OutputStream outputStream
         0: .line 77
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writeDouble:(Ljava/io/OutputStream;D)V
         1: .line 78
            return
        end local 1 // java.io.OutputStream outputStream
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    2     1  outputStream  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      outputStream  final

  public org.apache.lucene.spatial3d.geom.GeoBBox expand(double);
    descriptor: (D)Lorg/apache/lucene/spatial3d/geom/GeoBBox;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // double angle
         0: .line 82
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            dload 1 /* angle */
            dadd
            dstore 3 /* newTopLat */
        start local 3 // double newTopLat
         1: .line 84
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            dload 3 /* newTopLat */
            ldc -1.5707963267948966
            ldc -3.141592653589793
            ldc 3.141592653589793
            invokestatic org.apache.lucene.spatial3d.geom.GeoBBoxFactory.makeGeoBBox:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DDDD)Lorg/apache/lucene/spatial3d/geom/GeoBBox;
            areturn
        end local 3 // double newTopLat
        end local 1 // double angle
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    2     1      angle  D
            1    2     3  newTopLat  D
    MethodParameters:
       Name  Flags
      angle  final

  public boolean isWithin(double, double, double);
    descriptor: (DDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // double x
        start local 3 // double y
        start local 5 // double z
         0: .line 89
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            dload 1 /* x */
            dload 3 /* y */
            dload 5 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.SidedPlane.isWithin:(DDD)Z
            ireturn
        end local 5 // double z
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    1     1     x  D
            0    1     3     y  D
            0    1     5     z  D
    MethodParameters:
      Name  Flags
      x     final
      y     final
      z     final

  public double getRadius();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
         0: .line 96
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            dconst_0
            dcmpl
            ifle 2
         1: .line 97
            ldc 3.141592653589793
            dreturn
         2: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.cosTopLat:D
            dstore 1 /* maxCosLat */
        start local 1 // double maxCosLat
         3: .line 99
            dload 1 /* maxCosLat */
            ldc 3.141592653589793
            dmul
            dreturn
        end local 1 // double maxCosLat
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            3    4     1  maxCosLat  D

  public org.apache.lucene.spatial3d.geom.GeoPoint getCenter();
    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.GeoSouthLatitudeZone this
         0: .line 109
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.interiorPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            areturn
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;

  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.GeoSouthLatitudeZone this
         0: .line 114
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.edgePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            areturn
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;

  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=7, locals=4, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // org.apache.lucene.spatial3d.geom.Plane p
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint[] notablePoints
        start local 3 // org.apache.lucene.spatial3d.geom.Membership[] bounds
         0: .line 119
            aload 1 /* p */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            aload 2 /* notablePoints */
            getstatic org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            aload 3 /* bounds */
            iconst_0
            anewarray org.apache.lucene.spatial3d.geom.Membership
            invokevirtual org.apache.lucene.spatial3d.geom.Plane.intersects:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/Membership;[Lorg/apache/lucene/spatial3d/geom/Membership;)Z
            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 p
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    1     1              p  Lorg/apache/lucene/spatial3d/geom/Plane;
            0    1     2  notablePoints  [Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            0    1     3         bounds  [Lorg/apache/lucene/spatial3d/geom/Membership;
    MethodParameters:
               Name  Flags
      p              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=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // org.apache.lucene.spatial3d.geom.GeoShape geoShape
         0: .line 124
            aload 1 /* geoShape */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            getstatic org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            iconst_0
            anewarray org.apache.lucene.spatial3d.geom.Membership
            invokeinterface org.apache.lucene.spatial3d.geom.GeoShape.intersects:(Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/GeoPoint;[Lorg/apache/lucene/spatial3d/geom/Membership;)Z
            ireturn
        end local 1 // org.apache.lucene.spatial3d.geom.GeoShape geoShape
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    1     1  geoShape  Lorg/apache/lucene/spatial3d/geom/GeoShape;
    MethodParameters:
          Name  Flags
      geoShape  final

  public void getBounds(org.apache.lucene.spatial3d.geom.Bounds);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/Bounds;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
        start local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
         0: .line 129
            aload 0 /* this */
            aload 1 /* bounds */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBaseBBox.getBounds:(Lorg/apache/lucene/spatial3d/geom/Bounds;)V
         1: .line 130
            aload 1 /* bounds */
         2: .line 131
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            iconst_0
            anewarray org.apache.lucene.spatial3d.geom.Membership
            invokeinterface org.apache.lucene.spatial3d.geom.Bounds.addHorizontalPlane:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DLorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/Membership;)Lorg/apache/lucene/spatial3d/geom/Bounds;
            pop
         3: .line 132
            return
        end local 1 // org.apache.lucene.spatial3d.geom.Bounds bounds
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    4     1  bounds  Lorg/apache/lucene/spatial3d/geom/Bounds;
    MethodParameters:
        Name  Flags
      bounds  

  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=10, locals=8, args_size=5
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone 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 136
            aload 1 /* distanceStyle */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topPlane:Lorg/apache/lucene/spatial3d/geom/SidedPlane;
            dload 2 /* x */
            dload 4 /* y */
            dload 6 /* z */
            iconst_0
            anewarray org.apache.lucene.spatial3d.geom.Membership
            invokeinterface org.apache.lucene.spatial3d.geom.DistanceStyle.computeDistance:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Plane;DDD[Lorg/apache/lucene/spatial3d/geom/Membership;)D
            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.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            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

  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.GeoSouthLatitudeZone this
        start local 1 // java.lang.Object o
         0: .line 141
            aload 1 /* o */
            instanceof org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone
            ifne 2
         1: .line 142
            iconst_0
            ireturn
         2: .line 143
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone
            astore 2 /* other */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone other
         3: .line 144
            aload 0 /* this */
            aload 2 /* other */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBaseBBox.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 2 /* other */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topBoundaryPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topBoundaryPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            invokevirtual org.apache.lucene.spatial3d.geom.GeoPoint.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone other
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            0    5     1      o  Ljava/lang/Object;
            3    5     2  other  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
    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.GeoSouthLatitudeZone this
         0: .line 149
            aload 0 /* this */
            invokespecial org.apache.lucene.spatial3d.geom.GeoBaseBBox.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 150
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topBoundaryPoint:Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            invokevirtual org.apache.lucene.spatial3d.geom.GeoPoint.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 151
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
            1    3     1  result  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone this
         0: .line 156
            new java.lang.StringBuilder
            dup
            ldc "GeoSouthLatitudeZone: {planetmodel="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", toplat="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc "("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.GeoSouthLatitudeZone.topLat:D
            ldc 180.0
            dmul
            ldc 3.141592653589793
            ddiv
            invokevirtual java.lang.StringBuilder.append:(D)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.GeoSouthLatitudeZone this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone;
}
SourceFile: "GeoSouthLatitudeZone.java"