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

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

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

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

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

  public void <init>(org.apache.lucene.spatial3d.geom.PlanetModel, double, double, double, double);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/PlanetModel;DDDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=14, args_size=6
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // double minX
        start local 4 // double maxX
        start local 6 // double Y
        start local 8 // double Z
         0: .line 58
            aload 0 /* this */
            aload 1 /* planetModel */
            invokespecial org.apache.lucene.spatial3d.geom.BaseXYZSolid.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;)V
         1: .line 60
            dload 4 /* maxX */
            dload 2 /* minX */
            dsub
            ldc 1.0E-12
            dcmpg
            ifge 3
         2: .line 61
            new java.lang.IllegalArgumentException
            dup
            ldc "X values in wrong order or identical"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 63
      StackMap locals: org.apache.lucene.spatial3d.geom.XdYdZSolid org.apache.lucene.spatial3d.geom.PlanetModel double double double double
      StackMap stack:
            aload 0 /* this */
            dload 2 /* minX */
            putfield org.apache.lucene.spatial3d.geom.XdYdZSolid.minX:D
         4: .line 64
            aload 0 /* this */
            dload 4 /* maxX */
            putfield org.apache.lucene.spatial3d.geom.XdYdZSolid.maxX:D
         5: .line 65
            aload 0 /* this */
            dload 6 /* Y */
            putfield org.apache.lucene.spatial3d.geom.XdYdZSolid.Y:D
         6: .line 66
            aload 0 /* this */
            dload 8 /* Z */
            putfield org.apache.lucene.spatial3d.geom.XdYdZSolid.Z:D
         7: .line 69
            new org.apache.lucene.spatial3d.geom.Plane
            dup
            getstatic org.apache.lucene.spatial3d.geom.XdYdZSolid.yUnitVector:Lorg/apache/lucene/spatial3d/geom/Vector;
            dload 6 /* Y */
            dneg
            invokespecial org.apache.lucene.spatial3d.geom.Plane.<init>:(Lorg/apache/lucene/spatial3d/geom/Vector;D)V
            astore 10 /* yPlane */
        start local 10 // org.apache.lucene.spatial3d.geom.Plane yPlane
         8: .line 70
            new org.apache.lucene.spatial3d.geom.Plane
            dup
            getstatic org.apache.lucene.spatial3d.geom.XdYdZSolid.zUnitVector:Lorg/apache/lucene/spatial3d/geom/Vector;
            dload 8 /* Z */
            dneg
            invokespecial org.apache.lucene.spatial3d.geom.Plane.<init>:(Lorg/apache/lucene/spatial3d/geom/Vector;D)V
            astore 11 /* zPlane */
        start local 11 // org.apache.lucene.spatial3d.geom.Plane zPlane
         9: .line 71
            new org.apache.lucene.spatial3d.geom.SidedPlane
            dup
            dload 4 /* maxX */
            dconst_0
            dconst_0
            getstatic org.apache.lucene.spatial3d.geom.XdYdZSolid.xUnitVector:Lorg/apache/lucene/spatial3d/geom/Vector;
            dload 2 /* minX */
            dneg
            invokespecial org.apache.lucene.spatial3d.geom.SidedPlane.<init>:(DDDLorg/apache/lucene/spatial3d/geom/Vector;D)V
            astore 12 /* minXPlane */
        start local 12 // org.apache.lucene.spatial3d.geom.SidedPlane minXPlane
        10: .line 72
            new org.apache.lucene.spatial3d.geom.SidedPlane
            dup
            dload 2 /* minX */
            dconst_0
            dconst_0
            getstatic org.apache.lucene.spatial3d.geom.XdYdZSolid.xUnitVector:Lorg/apache/lucene/spatial3d/geom/Vector;
            dload 4 /* maxX */
            dneg
            invokespecial org.apache.lucene.spatial3d.geom.SidedPlane.<init>:(DDDLorg/apache/lucene/spatial3d/geom/Vector;D)V
            astore 13 /* maxXPlane */
        start local 13 // org.apache.lucene.spatial3d.geom.SidedPlane maxXPlane
        11: .line 73
            aload 0 /* this */
            aload 10 /* yPlane */
            aload 1 /* planetModel */
            aload 11 /* zPlane */
            iconst_2
            anewarray org.apache.lucene.spatial3d.geom.Membership
            dup
            iconst_0
            aload 12 /* minXPlane */
            aastore
            dup
            iconst_1
            aload 13 /* maxXPlane */
            aastore
            invokevirtual org.apache.lucene.spatial3d.geom.Plane.findIntersections:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;Lorg/apache/lucene/spatial3d/geom/Plane;[Lorg/apache/lucene/spatial3d/geom/Membership;)[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            putfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
        12: .line 74
            return
        end local 13 // org.apache.lucene.spatial3d.geom.SidedPlane maxXPlane
        end local 12 // org.apache.lucene.spatial3d.geom.SidedPlane minXPlane
        end local 11 // org.apache.lucene.spatial3d.geom.Plane zPlane
        end local 10 // org.apache.lucene.spatial3d.geom.Plane yPlane
        end local 8 // double Z
        end local 6 // double Y
        end local 4 // double maxX
        end local 2 // double minX
        end local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0   13     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0   13     2         minX  D
            0   13     4         maxX  D
            0   13     6            Y  D
            0   13     8            Z  D
            8   13    10       yPlane  Lorg/apache/lucene/spatial3d/geom/Plane;
            9   13    11       zPlane  Lorg/apache/lucene/spatial3d/geom/Plane;
           10   13    12    minXPlane  Lorg/apache/lucene/spatial3d/geom/SidedPlane;
           11   13    13    maxXPlane  Lorg/apache/lucene/spatial3d/geom/SidedPlane;
    MethodParameters:
             Name  Flags
      planetModel  final
      minX         final
      maxX         final
      Y            final
      Z            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=10, locals=3, args_size=3
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
        start local 1 // org.apache.lucene.spatial3d.geom.PlanetModel planetModel
        start local 2 // java.io.InputStream inputStream
         0: .line 82
            aload 0 /* this */
            aload 1 /* planetModel */
         1: .line 83
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readDouble:(Ljava/io/InputStream;)D
         2: .line 84
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readDouble:(Ljava/io/InputStream;)D
         3: .line 85
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readDouble:(Ljava/io/InputStream;)D
         4: .line 86
            aload 2 /* inputStream */
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.readDouble:(Ljava/io/InputStream;)D
            invokespecial org.apache.lucene.spatial3d.geom.XdYdZSolid.<init>:(Lorg/apache/lucene/spatial3d/geom/PlanetModel;DDDD)V
         5: .line 87
            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.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0    6     1  planetModel  Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            0    6     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.XdYdZSolid this
        start local 1 // java.io.OutputStream outputStream
         0: .line 91
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.minX:D
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writeDouble:(Ljava/io/OutputStream;D)V
         1: .line 92
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.maxX:D
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writeDouble:(Ljava/io/OutputStream;D)V
         2: .line 93
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.Y:D
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writeDouble:(Ljava/io/OutputStream;D)V
         3: .line 94
            aload 1 /* outputStream */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.Z:D
            invokestatic org.apache.lucene.spatial3d.geom.SerializableObject.writeDouble:(Ljava/io/OutputStream;D)V
         4: .line 95
            return
        end local 1 // java.io.OutputStream outputStream
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0    5     1  outputStream  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      outputStream  final

  protected org.apache.lucene.spatial3d.geom.GeoPoint[] getEdgePoints();
    descriptor: ()[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
         0: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            areturn
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;

  public boolean isWithin(double, double, double);
    descriptor: (DDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=11, args_size=4
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
        start local 1 // double x
        start local 3 // double y
        start local 5 // double z
         0: .line 104
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            dup
            astore 10
            arraylength
            istore 9
            iconst_0
            istore 8
            goto 5
      StackMap locals: org.apache.lucene.spatial3d.geom.XdYdZSolid double double double top int int org.apache.lucene.spatial3d.geom.GeoPoint[]
      StackMap stack:
         1: aload 10
            iload 8
            aaload
            astore 7 /* p */
        start local 7 // org.apache.lucene.spatial3d.geom.GeoPoint p
         2: .line 105
            aload 7 /* p */
            dload 1 /* x */
            dload 3 /* y */
            dload 5 /* z */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoPoint.isIdentical:(DDD)Z
            ifeq 4
         3: .line 106
            iconst_1
            ireturn
        end local 7 // org.apache.lucene.spatial3d.geom.GeoPoint p
         4: .line 104
      StackMap locals:
      StackMap stack:
            iinc 8 1
      StackMap locals:
      StackMap stack:
         5: iload 8
            iload 9
            if_icmplt 1
         6: .line 108
            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.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0    7     1     x  D
            0    7     3     y  D
            0    7     5     z  D
            2    4     7     p  Lorg/apache/lucene/spatial3d/geom/GeoPoint;
    MethodParameters:
      Name  Flags
      x     final
      y     final
      z     final

  public int getRelationship(org.apache.lucene.spatial3d.geom.GeoShape);
    descriptor: (Lorg/apache/lucene/spatial3d/geom/GeoShape;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
        start local 1 // org.apache.lucene.spatial3d.geom.GeoShape path
         0: .line 114
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual org.apache.lucene.spatial3d.geom.XdYdZSolid.isShapeInsideArea:(Lorg/apache/lucene/spatial3d/geom/GeoShape;)I
            istore 2 /* insideRectangle */
        start local 2 // int insideRectangle
         1: .line 115
            iload 2 /* insideRectangle */
            iconst_1
            if_icmpne 3
         2: .line 117
            iconst_2
            ireturn
         3: .line 121
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual org.apache.lucene.spatial3d.geom.XdYdZSolid.isAreaInsideShape:(Lorg/apache/lucene/spatial3d/geom/GeoShape;)I
            istore 3 /* insideShape */
        start local 3 // int insideShape
         4: .line 122
            iload 3 /* insideShape */
            iconst_1
            if_icmpne 6
         5: .line 123
            iconst_2
            ireturn
         6: .line 126
      StackMap locals: int
      StackMap stack:
            iload 2 /* insideRectangle */
            ifne 8
            iload 3 /* insideShape */
            ifne 8
         7: .line 128
            iconst_2
            ireturn
         8: .line 131
      StackMap locals:
      StackMap stack:
            iload 2 /* insideRectangle */
            ifne 10
         9: .line 132
            iconst_1
            ireturn
        10: .line 135
      StackMap locals:
      StackMap stack:
            iload 3 /* insideShape */
            ifne 12
        11: .line 137
            iconst_0
            ireturn
        12: .line 140
      StackMap locals:
      StackMap stack:
            iconst_3
            ireturn
        end local 3 // int insideShape
        end local 2 // int insideRectangle
        end local 1 // org.apache.lucene.spatial3d.geom.GeoShape path
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0   13     1             path  Lorg/apache/lucene/spatial3d/geom/GeoShape;
            1   13     2  insideRectangle  I
            4   13     3      insideShape  I
    MethodParameters:
      Name  Flags
      path  final

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
        start local 1 // java.lang.Object o
         0: .line 145
            aload 1 /* o */
            instanceof org.apache.lucene.spatial3d.geom.XdYdZSolid
            ifne 2
         1: .line 146
            iconst_0
            ireturn
         2: .line 147
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.spatial3d.geom.XdYdZSolid
            astore 2 /* other */
        start local 2 // org.apache.lucene.spatial3d.geom.XdYdZSolid other
         3: .line 148
            aload 0 /* this */
            aload 2 /* other */
            invokespecial org.apache.lucene.spatial3d.geom.BaseXYZSolid.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            arraylength
            aload 2 /* other */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            arraylength
            if_icmpeq 5
         4: .line 149
      StackMap locals: org.apache.lucene.spatial3d.geom.XdYdZSolid
      StackMap stack:
            iconst_0
            ireturn
         5: .line 151
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 152
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            iload 3 /* i */
            aaload
            aload 2 /* other */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            iload 3 /* i */
            aaload
            invokevirtual org.apache.lucene.spatial3d.geom.GeoPoint.equals:(Ljava/lang/Object;)Z
            ifne 9
         8: .line 153
            iconst_0
            ireturn
         9: .line 151
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 155
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.spatial3d.geom.XdYdZSolid other
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            0   12     1      o  Ljava/lang/Object;
            3   12     2  other  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            6   11     3      i  I
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
         0: .line 160
            aload 0 /* this */
            invokespecial org.apache.lucene.spatial3d.geom.BaseXYZSolid.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 161
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.apache.lucene.spatial3d.geom.XdYdZSolid int top int int org.apache.lucene.spatial3d.geom.GeoPoint[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* p */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint p
         3: .line 162
            bipush 31
            iload 1 /* result */
            imul
            aload 2 /* p */
            invokevirtual org.apache.lucene.spatial3d.geom.GeoPoint.hashCode:()I
            iadd
            istore 1 /* result */
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint p
         4: .line 161
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 164
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            1    7     1  result  I
            3    4     2       p  Lorg/apache/lucene/spatial3d/geom/GeoPoint;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
         0: .line 169
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 170
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.surfacePoints:[Lorg/apache/lucene/spatial3d/geom/GeoPoint;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.apache.lucene.spatial3d.geom.XdYdZSolid java.lang.StringBuilder top int int org.apache.lucene.spatial3d.geom.GeoPoint[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* p */
        start local 2 // org.apache.lucene.spatial3d.geom.GeoPoint p
         3: .line 171
            aload 1 /* sb */
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* p */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 2 // org.apache.lucene.spatial3d.geom.GeoPoint p
         4: .line 170
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 173
            new java.lang.StringBuilder
            dup
            ldc "XdYdZSolid: {planetmodel="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.spatial3d.geom.XdYdZSolid.planetModel:Lorg/apache/lucene/spatial3d/geom/PlanetModel;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)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 1 // java.lang.StringBuilder sb
        end local 0 // org.apache.lucene.spatial3d.geom.XdYdZSolid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/spatial3d/geom/XdYdZSolid;
            1    7     1    sb  Ljava/lang/StringBuilder;
            3    4     2     p  Lorg/apache/lucene/spatial3d/geom/GeoPoint;
}
SourceFile: "XdYdZSolid.java"