public static class PolygonHelper.Line
Representation of line
Calculates line by two points and finds intersection points with other lines General line formula is a * x + b * y + c = 0
public android.graphics.PointF getIntersectionPoint(io.scanbot.sdk.util.view.PolygonHelper.Line line)
line - public void calculateLine(android.graphics.PointF start,
android.graphics.PointF end)
Calculate all 3 components of the line
start - starting point of segment laying on this lineend - ending point of segment laying on this linepublic double getDistanceToPoint(android.graphics.PointF point)
Calculates distance to point Should be used after line components are calculated
point -