Uses of Class
uk.ac.leeds.ccg.andyt.vector.geometry.Vector_LineSegment2D

Packages that use Vector_LineSegment2D
uk.ac.leeds.ccg.andyt.vector.geometry   
 

Uses of Vector_LineSegment2D in uk.ac.leeds.ccg.andyt.vector.geometry
 

Methods in uk.ac.leeds.ccg.andyt.vector.geometry that return Vector_LineSegment2D
 Vector_LineSegment2D Vector_LineSegment2D.getOrderedLineSegment2D()
           
 

Methods in uk.ac.leeds.ccg.andyt.vector.geometry with parameters of type Vector_LineSegment2D
 java.math.BigDecimal Vector_LineSegment2D.getCrossProduct(Vector_LineSegment2D a_LineSegment2D)
          Assuming a_LineSegment.StartPoint == this.
 Vector_AbstractGeometry2D Vector_LineSegment2D.getIntersection(Vector_LineSegment2D a_LineSegment2D, int a_DecimalPlacePrecision)
          Intersection method adapted from http://local.wasp.uwa.edu.au/~pbourke/geometry/lineline2d/
 int Vector_Envelope2D.getIntersects(Vector_LineSegment2D a_LineSegment2D)
           
 boolean Vector_LineSegment2D.getIntersects(Vector_LineSegment2D a_LineSegment2D, boolean ignore_this_Start_Point2D, int a_DecimalPlacePrecision)
          For optimisation reasons, intersection done by first seeing if there is Envelope intersection...
 boolean Vector_LineSegment2D.getIntersects(Vector_LineSegment2D a_LineSegment2D, int a_DecimalPlacePrecision)
          Intersection done by first seeing if Envelope intersection....
 boolean Vector_Point2D.getIntersects(Vector_LineSegment2D a_LineSegment2D, int a_DecimalPlacePrecisionForCalculations)
           
 java.math.BigDecimal Vector_LineSegment2D.getScalarProduct(Vector_LineSegment2D a_LineSegment2D)
          Assuming a_LineSegment.StartPoint == this.
 

Constructors in uk.ac.leeds.ccg.andyt.vector.geometry with parameters of type Vector_LineSegment2D
Vector_LineSegment2D(Vector_LineSegment2D a_LineSegment2D)
          Creates a Vector_LineSegment2D with: this._Start_Point2D = new Point2D(a_LineSegment2D._Start_Point2D); this._End_Point2D = new Point2D(a_LineSegment2D._End_Point2D); this._DecimalPlacePrecision_Integer = a_LineSegment2D._DecimalPlacePrecision_Integer;