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

  private final org.apache.commons.math3.geometry.euclidean.twod.Vector2D end;
    descriptor: Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.geometry.euclidean.twod.Line line;
    descriptor: Lorg/apache/commons/math3/geometry/euclidean/twod/Line;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.commons.math3.geometry.euclidean.twod.Vector2D, org.apache.commons.math3.geometry.euclidean.twod.Vector2D, org.apache.commons.math3.geometry.euclidean.twod.Line);
    descriptor: (Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;Lorg/apache/commons/math3/geometry/euclidean/twod/Line;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.Segment this
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D start
        start local 2 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D end
        start local 3 // org.apache.commons.math3.geometry.euclidean.twod.Line line
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* start */
            putfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
         2: .line 43
            aload 0 /* this */
            aload 2 /* end */
            putfield org.apache.commons.math3.geometry.euclidean.twod.Segment.end:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
         3: .line 44
            aload 0 /* this */
            aload 3 /* line */
            putfield org.apache.commons.math3.geometry.euclidean.twod.Segment.line:Lorg/apache/commons/math3/geometry/euclidean/twod/Line;
         4: .line 45
            return
        end local 3 // org.apache.commons.math3.geometry.euclidean.twod.Line line
        end local 2 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D end
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D start
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.Segment this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/math3/geometry/euclidean/twod/Segment;
            0    5     1  start  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            0    5     2    end  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            0    5     3   line  Lorg/apache/commons/math3/geometry/euclidean/twod/Line;
    MethodParameters:
       Name  Flags
      start  final
      end    final
      line   final

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

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

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

  public double distance(org.apache.commons.math3.geometry.euclidean.twod.Vector2D);
    descriptor: (Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=13, args_size=2
        start local 0 // org.apache.commons.math3.geometry.euclidean.twod.Segment this
        start local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D p
         0: .line 84
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.end:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getX:()D
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getX:()D
            dsub
            dstore 2 /* deltaX */
        start local 2 // double deltaX
         1: .line 85
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.end:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getY:()D
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getY:()D
            dsub
            dstore 4 /* deltaY */
        start local 4 // double deltaY
         2: .line 87
            aload 1 /* p */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getX:()D
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getX:()D
            dsub
            dload 2 /* deltaX */
            dmul
            aload 1 /* p */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getY:()D
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getY:()D
            dsub
            dload 4 /* deltaY */
            dmul
            dadd
         3: .line 88
            dload 2 /* deltaX */
            dload 2 /* deltaX */
            dmul
            dload 4 /* deltaY */
            dload 4 /* deltaY */
            dmul
            dadd
         4: .line 87
            ddiv
            dstore 6 /* r */
        start local 6 // double r
         5: .line 97
            dload 6 /* r */
            dconst_0
            dcmpg
            iflt 6
            dload 6 /* r */
            dconst_1
            dcmpl
            ifle 9
         6: .line 98
      StackMap locals: double double double
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Segment.getStart:()Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            aload 1 /* p */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.distance:(Lorg/apache/commons/math3/geometry/Point;)D
            dstore 8 /* dist1 */
        start local 8 // double dist1
         7: .line 99
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Segment.getEnd:()Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            aload 1 /* p */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.distance:(Lorg/apache/commons/math3/geometry/Point;)D
            dstore 10 /* dist2 */
        start local 10 // double dist2
         8: .line 101
            dload 8 /* dist1 */
            dload 10 /* dist2 */
            invokestatic org.apache.commons.math3.util.FastMath.min:(DD)D
            dreturn
        end local 10 // double dist2
        end local 8 // double dist1
         9: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getX:()D
            dload 6 /* r */
            dload 2 /* deltaX */
            dmul
            dadd
            dstore 8 /* px */
        start local 8 // double px
        10: .line 106
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.euclidean.twod.Segment.start:Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.getY:()D
            dload 6 /* r */
            dload 4 /* deltaY */
            dmul
            dadd
            dstore 10 /* py */
        start local 10 // double py
        11: .line 108
            new org.apache.commons.math3.geometry.euclidean.twod.Vector2D
            dup
            dload 8 /* px */
            dload 10 /* py */
            invokespecial org.apache.commons.math3.geometry.euclidean.twod.Vector2D.<init>:(DD)V
            astore 12 /* interPt */
        start local 12 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D interPt
        12: .line 109
            aload 12 /* interPt */
            aload 1 /* p */
            invokevirtual org.apache.commons.math3.geometry.euclidean.twod.Vector2D.distance:(Lorg/apache/commons/math3/geometry/Point;)D
            dreturn
        end local 12 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D interPt
        end local 10 // double py
        end local 8 // double px
        end local 6 // double r
        end local 4 // double deltaY
        end local 2 // double deltaX
        end local 1 // org.apache.commons.math3.geometry.euclidean.twod.Vector2D p
        end local 0 // org.apache.commons.math3.geometry.euclidean.twod.Segment this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/commons/math3/geometry/euclidean/twod/Segment;
            0   13     1        p  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
            1   13     2   deltaX  D
            2   13     4   deltaY  D
            5   13     6        r  D
            7    9     8    dist1  D
            8    9    10    dist2  D
           10   13     8       px  D
           11   13    10       py  D
           12   13    12  interPt  Lorg/apache/commons/math3/geometry/euclidean/twod/Vector2D;
    MethodParameters:
      Name  Flags
      p     final
}
SourceFile: "Segment.java"