final class org.apache.lucene.geo.Polygon2D implements org.apache.lucene.geo.Component2D
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.geo.Polygon2D
  super_class: java.lang.Object
{
  private final double minY;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  protected final org.apache.lucene.geo.Component2D holes;
    descriptor: Lorg/apache/lucene/geo/Component2D;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  final org.apache.lucene.geo.EdgeTree tree;
    descriptor: Lorg/apache/lucene/geo/EdgeTree;
    flags: (0x0010) ACC_FINAL

  private void <init>(double, double, double, double, double[], double[], org.apache.lucene.geo.Component2D);
    descriptor: (DDDD[D[DLorg/apache/lucene/geo/Component2D;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=12, args_size=8
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double[] x
        start local 10 // double[] y
        start local 11 // org.apache.lucene.geo.Component2D holes
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            dload 5 /* minY */
            putfield org.apache.lucene.geo.Polygon2D.minY:D
         2: .line 44
            aload 0 /* this */
            dload 7 /* maxY */
            putfield org.apache.lucene.geo.Polygon2D.maxY:D
         3: .line 45
            aload 0 /* this */
            dload 1 /* minX */
            putfield org.apache.lucene.geo.Polygon2D.minX:D
         4: .line 46
            aload 0 /* this */
            dload 3 /* maxX */
            putfield org.apache.lucene.geo.Polygon2D.maxX:D
         5: .line 47
            aload 0 /* this */
            aload 11 /* holes */
            putfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
         6: .line 48
            aload 0 /* this */
            aload 9 /* x */
            aload 10 /* y */
            invokestatic org.apache.lucene.geo.EdgeTree.createTree:([D[D)Lorg/apache/lucene/geo/EdgeTree;
            putfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
         7: .line 49
            return
        end local 11 // org.apache.lucene.geo.Component2D holes
        end local 10 // double[] y
        end local 9 // double[] x
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/lucene/geo/Polygon2D;
            0    8     1   minX  D
            0    8     3   maxX  D
            0    8     5   minY  D
            0    8     7   maxY  D
            0    8     9      x  [D
            0    8    10      y  [D
            0    8    11  holes  Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
       Name  Flags
      minX   final
      maxX   final
      minY   final
      maxY   final
      x      
      y      
      holes  

  private void <init>(org.apache.lucene.geo.XYPolygon, org.apache.lucene.geo.Component2D);
    descriptor: (Lorg/apache/lucene/geo/XYPolygon;Lorg/apache/lucene/geo/Component2D;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=12, locals=3, args_size=3
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // org.apache.lucene.geo.XYPolygon polygon
        start local 2 // org.apache.lucene.geo.Component2D holes
         0: .line 52
            aload 0 /* this */
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.XYPolygon.minX:F
            f2d
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.XYPolygon.maxX:F
            f2d
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.XYPolygon.minY:F
            f2d
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.XYPolygon.maxY:F
            f2d
            aload 1 /* polygon */
            invokevirtual org.apache.lucene.geo.XYPolygon.getPolyX:()[F
            invokestatic org.apache.lucene.geo.XYEncodingUtils.floatArrayToDoubleArray:([F)[D
            aload 1 /* polygon */
            invokevirtual org.apache.lucene.geo.XYPolygon.getPolyY:()[F
            invokestatic org.apache.lucene.geo.XYEncodingUtils.floatArrayToDoubleArray:([F)[D
            aload 2 /* holes */
            invokespecial org.apache.lucene.geo.Polygon2D.<init>:(DDDD[D[DLorg/apache/lucene/geo/Component2D;)V
         1: .line 53
            return
        end local 2 // org.apache.lucene.geo.Component2D holes
        end local 1 // org.apache.lucene.geo.XYPolygon polygon
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/lucene/geo/Polygon2D;
            0    2     1  polygon  Lorg/apache/lucene/geo/XYPolygon;
            0    2     2    holes  Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
         Name  Flags
      polygon  
      holes    

  private void <init>(org.apache.lucene.geo.Polygon, org.apache.lucene.geo.Component2D);
    descriptor: (Lorg/apache/lucene/geo/Polygon;Lorg/apache/lucene/geo/Component2D;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=12, locals=3, args_size=3
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // org.apache.lucene.geo.Polygon polygon
        start local 2 // org.apache.lucene.geo.Component2D holes
         0: .line 56
            aload 0 /* this */
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.Polygon.minLon:D
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.Polygon.maxLon:D
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.Polygon.minLat:D
            aload 1 /* polygon */
            getfield org.apache.lucene.geo.Polygon.maxLat:D
            aload 1 /* polygon */
            invokevirtual org.apache.lucene.geo.Polygon.getPolyLons:()[D
            aload 1 /* polygon */
            invokevirtual org.apache.lucene.geo.Polygon.getPolyLats:()[D
            aload 2 /* holes */
            invokespecial org.apache.lucene.geo.Polygon2D.<init>:(DDDD[D[DLorg/apache/lucene/geo/Component2D;)V
         1: .line 57
            return
        end local 2 // org.apache.lucene.geo.Component2D holes
        end local 1 // org.apache.lucene.geo.Polygon polygon
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/lucene/geo/Polygon2D;
            0    2     1  polygon  Lorg/apache/lucene/geo/Polygon;
            0    2     2    holes  Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
         Name  Flags
      polygon  
      holes    

  public double getMinX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Polygon2D this
         0: .line 61
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            dreturn
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Polygon2D;

  public double getMaxX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Polygon2D this
         0: .line 66
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            dreturn
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Polygon2D;

  public double getMinY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Polygon2D this
         0: .line 71
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            dreturn
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Polygon2D;

  public double getMaxY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.geo.Polygon2D this
         0: .line 76
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dreturn
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Polygon2D;

  public boolean contains(double, double);
    descriptor: (DD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=5, args_size=3
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double x
        start local 3 // double y
         0: .line 87
            dload 1 /* x */
            dload 3 /* y */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            invokestatic org.apache.lucene.geo.Component2D.containsPoint:(DDDDDD)Z
            ifeq 3
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* x */
            dload 3 /* y */
            invokevirtual org.apache.lucene.geo.EdgeTree.contains:(DD)Z
            ifeq 3
         1: .line 88
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 2
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* x */
            dload 3 /* y */
            invokeinterface org.apache.lucene.geo.Component2D.contains:(DD)Z
            ifeq 2
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
         3: .line 90
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    4     1     x  D
            0    4     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public org.apache.lucene.index.PointValues$Relation relate(double, double, double, double);
    descriptor: (DDDD)Lorg/apache/lucene/index/PointValues$Relation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=16, locals=10, args_size=5
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
         0: .line 95
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 96
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_OUTSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
         2: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.within:(DDDDDDDD)Z
            ifeq 4
         3: .line 99
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
         4: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 10
         5: .line 103
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokeinterface org.apache.lucene.geo.Component2D.relate:(DDDD)Lorg/apache/lucene/index/PointValues$Relation;
            astore 9 /* holeRelation */
        start local 9 // org.apache.lucene.index.PointValues$Relation holeRelation
         6: .line 104
            aload 9 /* holeRelation */
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            if_acmpne 8
         7: .line 105
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
         8: .line 106
      StackMap locals: org.apache.lucene.index.PointValues$Relation
      StackMap stack:
            aload 9 /* holeRelation */
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_INSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            if_acmpne 10
         9: .line 107
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_OUTSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        end local 9 // org.apache.lucene.index.PointValues$Relation holeRelation
        10: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokevirtual org.apache.lucene.geo.Polygon2D.numberOfCorners:(DDDD)I
            istore 9 /* numCorners */
        start local 9 // int numCorners
        11: .line 112
            iload 9 /* numCorners */
            iconst_4
            if_icmpne 15
        12: .line 113
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesBox:(DDDDZ)Z
            ifeq 14
        13: .line 114
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        14: .line 116
      StackMap locals: int
      StackMap stack:
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_INSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        15: .line 117
      StackMap locals:
      StackMap stack:
            iload 9 /* numCorners */
            ifne 21
        16: .line 118
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.x1:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.y1:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.containsPoint:(DDDDDD)Z
            ifeq 18
        17: .line 119
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        18: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesBox:(DDDDZ)Z
            ifeq 20
        19: .line 122
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        20: .line 124
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_OUTSIDE_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        21: .line 126
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.index.PointValues$Relation.CELL_CROSSES_QUERY:Lorg/apache/lucene/index/PointValues$Relation;
            areturn
        end local 9 // int numCorners
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/apache/lucene/geo/Polygon2D;
            0   22     1          minX  D
            0   22     3          maxX  D
            0   22     5          minY  D
            0   22     7          maxY  D
            6   10     9  holeRelation  Lorg/apache/lucene/index/PointValues$Relation;
           11   22     9    numCorners  I
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  

  public boolean intersectsLine(double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=18, locals=17, args_size=9
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
         0: .line 132
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 133
            iconst_0
            ireturn
         2: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 4
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 4
         3: .line 136
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifeq 6
         4: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 5
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            invokeinterface org.apache.lucene.geo.Component2D.containsLine:(DDDDDDDD)Z
            ifeq 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
         6: .line 139
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    7     1  minX  D
            0    7     3  maxX  D
            0    7     5  minY  D
            0    7     7  maxY  D
            0    7     9    aX  D
            0    7    11    aY  D
            0    7    13    bX  D
            0    7    15    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    

  public boolean intersectsTriangle(double, double, double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=24, locals=21, args_size=11
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
        start local 17 // double cX
        start local 19 // double cY
         0: .line 145
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 146
            iconst_0
            ireturn
         2: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 5
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 5
            aload 0 /* this */
            dload 17 /* cX */
            dload 19 /* cY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 5
         3: .line 149
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.x1:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.y1:D
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            invokestatic org.apache.lucene.geo.Component2D.pointInTriangle:(DDDDDDDDDDDD)Z
            ifne 5
         4: .line 150
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesTriangle:(DDDDDDDDDDZ)Z
            ifeq 7
         5: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 6
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            invokeinterface org.apache.lucene.geo.Component2D.containsTriangle:(DDDDDDDDDD)Z
            ifeq 6
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_1
            ireturn
         7: .line 153
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 19 // double cY
        end local 17 // double cX
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    8     1  minX  D
            0    8     3  maxX  D
            0    8     5  minY  D
            0    8     7  maxY  D
            0    8     9    aX  D
            0    8    11    aY  D
            0    8    13    bX  D
            0    8    15    bY  D
            0    8    17    cX  D
            0    8    19    cY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    
      cX    
      cY    

  public boolean containsLine(double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=18, locals=17, args_size=9
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
         0: .line 159
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 160
            iconst_0
            ireturn
         2: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 6
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 6
         3: .line 163
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            iconst_0
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifne 6
         4: .line 164
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 5
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            invokeinterface org.apache.lucene.geo.Component2D.intersectsLine:(DDDDDDDD)Z
            ifeq 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
         6: .line 166
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    7     1  minX  D
            0    7     3  maxX  D
            0    7     5  minY  D
            0    7     7  maxY  D
            0    7     9    aX  D
            0    7    11    aY  D
            0    7    13    bX  D
            0    7    15    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    

  public boolean containsTriangle(double, double, double, double, double, double, double, double, double, double);
    descriptor: (DDDDDDDDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=22, locals=21, args_size=11
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // double bX
        start local 15 // double bY
        start local 17 // double cX
        start local 19 // double cY
         0: .line 172
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 173
            iconst_0
            ireturn
         2: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 6
            aload 0 /* this */
            dload 13 /* bX */
            dload 15 /* bY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 6
            aload 0 /* this */
            dload 17 /* cX */
            dload 19 /* cY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 6
         3: .line 176
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            iconst_0
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesTriangle:(DDDDDDDDDDZ)Z
            ifne 6
         4: .line 177
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            ifnull 5
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.holes:Lorg/apache/lucene/geo/Component2D;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 13 /* bX */
            dload 15 /* bY */
            dload 17 /* cX */
            dload 19 /* cY */
            invokeinterface org.apache.lucene.geo.Component2D.intersectsTriangle:(DDDDDDDDDD)Z
            ifeq 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
         6: .line 179
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 19 // double cY
        end local 17 // double cX
        end local 15 // double bY
        end local 13 // double bX
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    7     1  minX  D
            0    7     3  maxX  D
            0    7     5  minY  D
            0    7     7  maxY  D
            0    7     9    aX  D
            0    7    11    aY  D
            0    7    13    bX  D
            0    7    15    bY  D
            0    7    17    cX  D
            0    7    19    cY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      bX    
      bY    
      cX    
      cY    

  public org.apache.lucene.geo.Component2D$WithinRelation withinPoint(double, double);
    descriptor: (DD)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=5, args_size=3
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double x
        start local 3 // double y
         0: .line 184
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    1     1     x  D
            0    1     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public org.apache.lucene.geo.Component2D$WithinRelation withinLine(double, double, double, double, double, double, boolean, double, double);
    descriptor: (DDDDDDZDD)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=18, locals=18, args_size=10
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // boolean ab
        start local 14 // double bX
        start local 16 // double bY
         0: .line 190
            iload 13 /* ab */
            ifeq 3
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifne 3
         1: .line 191
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifeq 3
         2: .line 192
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         3: .line 194
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        end local 16 // double bY
        end local 14 // double bX
        end local 13 // boolean ab
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/geo/Polygon2D;
            0    4     1  minX  D
            0    4     3  maxX  D
            0    4     5  minY  D
            0    4     7  maxY  D
            0    4     9    aX  D
            0    4    11    aY  D
            0    4    13    ab  Z
            0    4    14    bX  D
            0    4    16    bY  D
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      ab    
      bX    
      bY    

  public org.apache.lucene.geo.Component2D$WithinRelation withinTriangle(double, double, double, double, double, double, boolean, double, double, boolean, double, double, boolean);
    descriptor: (DDDDDDZDDZDDZ)Lorg/apache/lucene/geo/Component2D$WithinRelation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=24, locals=25, args_size=14
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
        start local 9 // double aX
        start local 11 // double aY
        start local 13 // boolean ab
        start local 14 // double bX
        start local 16 // double bY
        start local 18 // boolean bc
        start local 19 // double cX
        start local 21 // double cY
        start local 23 // boolean ca
         0: .line 200
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxX:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.minY:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.maxY:D
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            invokestatic org.apache.lucene.geo.Component2D.disjoint:(DDDDDDDD)Z
            ifeq 2
         1: .line 201
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         2: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* aX */
            dload 11 /* aY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 14 /* bX */
            dload 16 /* bY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifne 3
            aload 0 /* this */
            dload 19 /* cX */
            dload 21 /* cY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 4
         3: .line 207
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         4: .line 210
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.DISJOINT:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        start local 24 // org.apache.lucene.geo.Component2D$WithinRelation relation
         5: .line 214
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifeq 9
         6: .line 215
            iload 13 /* ab */
            ifeq 8
         7: .line 216
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
         8: .line 218
      StackMap locals: org.apache.lucene.geo.Component2D$WithinRelation
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
         9: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 14 /* bX */
            dload 16 /* bY */
            dload 19 /* cX */
            dload 21 /* cY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifeq 13
        10: .line 223
            iload 18 /* bc */
            ifeq 12
        11: .line 224
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        12: .line 226
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        13: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            dload 19 /* cX */
            dload 21 /* cY */
            dload 9 /* aX */
            dload 11 /* aY */
            iconst_1
            invokevirtual org.apache.lucene.geo.EdgeTree.crossesLine:(DDDDDDDDZ)Z
            ifeq 17
        14: .line 230
            iload 23 /* ca */
            ifeq 16
        15: .line 231
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.NOTWITHIN:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        16: .line 233
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            astore 24 /* relation */
        17: .line 239
      StackMap locals:
      StackMap stack:
            aload 24 /* relation */
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            if_acmpne 19
        18: .line 240
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        19: .line 244
      StackMap locals:
      StackMap stack:
            dload 1 /* minX */
            dload 3 /* maxX */
            dload 5 /* minY */
            dload 7 /* maxY */
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.x1:D
            aload 0 /* this */
            getfield org.apache.lucene.geo.Polygon2D.tree:Lorg/apache/lucene/geo/EdgeTree;
            getfield org.apache.lucene.geo.EdgeTree.y1:D
            dload 9 /* aX */
            dload 11 /* aY */
            dload 14 /* bX */
            dload 16 /* bY */
            dload 19 /* cX */
            dload 21 /* cY */
            invokestatic org.apache.lucene.geo.Component2D.pointInTriangle:(DDDDDDDDDDDD)Z
            ifeq 21
        20: .line 245
            getstatic org.apache.lucene.geo.Component2D$WithinRelation.CANDIDATE:Lorg/apache/lucene/geo/Component2D$WithinRelation;
            areturn
        21: .line 247
      StackMap locals:
      StackMap stack:
            aload 24 /* relation */
            areturn
        end local 24 // org.apache.lucene.geo.Component2D$WithinRelation relation
        end local 23 // boolean ca
        end local 21 // double cY
        end local 19 // double cX
        end local 18 // boolean bc
        end local 16 // double bY
        end local 14 // double bX
        end local 13 // boolean ab
        end local 11 // double aY
        end local 9 // double aX
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lorg/apache/lucene/geo/Polygon2D;
            0   22     1      minX  D
            0   22     3      maxX  D
            0   22     5      minY  D
            0   22     7      maxY  D
            0   22     9        aX  D
            0   22    11        aY  D
            0   22    13        ab  Z
            0   22    14        bX  D
            0   22    16        bY  D
            0   22    18        bc  Z
            0   22    19        cX  D
            0   22    21        cY  D
            0   22    23        ca  Z
            5   22    24  relation  Lorg/apache/lucene/geo/Component2D$WithinRelation;
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  
      aX    
      aY    
      ab    
      bX    
      bY    
      bc    
      cX    
      cY    
      ca    

  private int numberOfCorners(double, double, double, double);
    descriptor: (DDDD)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // org.apache.lucene.geo.Polygon2D this
        start local 1 // double minX
        start local 3 // double maxX
        start local 5 // double minY
        start local 7 // double maxY
         0: .line 252
            iconst_0
            istore 9 /* containsCount */
        start local 9 // int containsCount
         1: .line 253
            aload 0 /* this */
            dload 1 /* minX */
            dload 5 /* minY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 3
         2: .line 254
            iinc 9 /* containsCount */ 1
         3: .line 256
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dload 3 /* maxX */
            dload 5 /* minY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 5
         4: .line 257
            iinc 9 /* containsCount */ 1
         5: .line 259
      StackMap locals:
      StackMap stack:
            iload 9 /* containsCount */
            iconst_1
            if_icmpne 7
         6: .line 260
            iload 9 /* containsCount */
            ireturn
         7: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 3 /* maxX */
            dload 7 /* maxY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 9
         8: .line 263
            iinc 9 /* containsCount */ 1
         9: .line 265
      StackMap locals:
      StackMap stack:
            iload 9 /* containsCount */
            iconst_2
            if_icmpne 11
        10: .line 266
            iload 9 /* containsCount */
            ireturn
        11: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* minX */
            dload 7 /* maxY */
            invokevirtual org.apache.lucene.geo.Polygon2D.contains:(DD)Z
            ifeq 13
        12: .line 269
            iinc 9 /* containsCount */ 1
        13: .line 271
      StackMap locals:
      StackMap stack:
            iload 9 /* containsCount */
            ireturn
        end local 9 // int containsCount
        end local 7 // double maxY
        end local 5 // double minY
        end local 3 // double maxX
        end local 1 // double minX
        end local 0 // org.apache.lucene.geo.Polygon2D this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lorg/apache/lucene/geo/Polygon2D;
            0   14     1           minX  D
            0   14     3           maxX  D
            0   14     5           minY  D
            0   14     7           maxY  D
            1   14     9  containsCount  I
    MethodParameters:
      Name  Flags
      minX  
      maxX  
      minY  
      maxY  

  static org.apache.lucene.geo.Component2D create(org.apache.lucene.geo.Polygon);
    descriptor: (Lorg/apache/lucene/geo/Polygon;)Lorg/apache/lucene/geo/Component2D;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.lucene.geo.Polygon polygon
         0: .line 276
            aload 0 /* polygon */
            invokevirtual org.apache.lucene.geo.Polygon.getHoles:()[Lorg/apache/lucene/geo/Polygon;
            astore 1 /* gonHoles */
        start local 1 // org.apache.lucene.geo.Polygon[] gonHoles
         1: .line 277
            aconst_null
            astore 2 /* holes */
        start local 2 // org.apache.lucene.geo.Component2D holes
         2: .line 278
            aload 1 /* gonHoles */
            arraylength
            ifle 4
         3: .line 279
            aload 1 /* gonHoles */
            invokestatic org.apache.lucene.geo.LatLonGeometry.create:([Lorg/apache/lucene/geo/LatLonGeometry;)Lorg/apache/lucene/geo/Component2D;
            astore 2 /* holes */
         4: .line 281
      StackMap locals: org.apache.lucene.geo.Polygon[] org.apache.lucene.geo.Component2D
      StackMap stack:
            new org.apache.lucene.geo.Polygon2D
            dup
            aload 0 /* polygon */
            aload 2 /* holes */
            invokespecial org.apache.lucene.geo.Polygon2D.<init>:(Lorg/apache/lucene/geo/Polygon;Lorg/apache/lucene/geo/Component2D;)V
            areturn
        end local 2 // org.apache.lucene.geo.Component2D holes
        end local 1 // org.apache.lucene.geo.Polygon[] gonHoles
        end local 0 // org.apache.lucene.geo.Polygon polygon
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0   polygon  Lorg/apache/lucene/geo/Polygon;
            1    5     1  gonHoles  [Lorg/apache/lucene/geo/Polygon;
            2    5     2     holes  Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
         Name  Flags
      polygon  

  static org.apache.lucene.geo.Component2D create(org.apache.lucene.geo.XYPolygon);
    descriptor: (Lorg/apache/lucene/geo/XYPolygon;)Lorg/apache/lucene/geo/Component2D;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.lucene.geo.XYPolygon polygon
         0: .line 286
            aload 0 /* polygon */
            invokevirtual org.apache.lucene.geo.XYPolygon.getHoles:()[Lorg/apache/lucene/geo/XYPolygon;
            astore 1 /* gonHoles */
        start local 1 // org.apache.lucene.geo.XYPolygon[] gonHoles
         1: .line 287
            aconst_null
            astore 2 /* holes */
        start local 2 // org.apache.lucene.geo.Component2D holes
         2: .line 288
            aload 1 /* gonHoles */
            arraylength
            ifle 4
         3: .line 289
            aload 1 /* gonHoles */
            invokestatic org.apache.lucene.geo.XYGeometry.create:([Lorg/apache/lucene/geo/XYGeometry;)Lorg/apache/lucene/geo/Component2D;
            astore 2 /* holes */
         4: .line 291
      StackMap locals: org.apache.lucene.geo.XYPolygon[] org.apache.lucene.geo.Component2D
      StackMap stack:
            new org.apache.lucene.geo.Polygon2D
            dup
            aload 0 /* polygon */
            aload 2 /* holes */
            invokespecial org.apache.lucene.geo.Polygon2D.<init>:(Lorg/apache/lucene/geo/XYPolygon;Lorg/apache/lucene/geo/Component2D;)V
            areturn
        end local 2 // org.apache.lucene.geo.Component2D holes
        end local 1 // org.apache.lucene.geo.XYPolygon[] gonHoles
        end local 0 // org.apache.lucene.geo.XYPolygon polygon
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0   polygon  Lorg/apache/lucene/geo/XYPolygon;
            1    5     1  gonHoles  [Lorg/apache/lucene/geo/XYPolygon;
            2    5     2     holes  Lorg/apache/lucene/geo/Component2D;
    MethodParameters:
         Name  Flags
      polygon  
}
SourceFile: "Polygon2D.java"
InnerClasses:
  public final WithinRelation = org.apache.lucene.geo.Component2D$WithinRelation of org.apache.lucene.geo.Component2D
  public final Relation = org.apache.lucene.index.PointValues$Relation of org.apache.lucene.index.PointValues