get distance between line and point code example
Example: distance from point to line
float normalDistanceToLine(vec2 P, vec2 L1, vec2 L2) {
float dividend = abs((L2.x - L1.x)*(L1.y - P.y) - (L1.x - P.x)*(L2.y - L1.y));
float divisor = sqrt(pow(L2.x - L1.x, 2) + pow(L2.y - L1.y, 2));
if (divisor != 0.f) {
return dividend / divisor;
else
return sqrt(pow(P.x - L1.x, 2) + pow(P.y - L1.y, 2));
}
float normalDistanceToLine(vec2 P, vec2 L1, vec2 L2) {
float dist = distance(L1, L2);
if (dist != 0.f) {
return abs((L2.x - L1.x)*(L1.y - P.y) - (L1.x - P.x)*(L2.y - L1.y)) / dist;
else
return distance(P, L1);
}