Description Usage Arguments Value Examples
This function calculates the shortest distance between a point and a line segment in 2D space.
1 | .distancePointSegment(x, y, x1, y1, x2, y2)
|
x |
x-coordinate of point |
y |
y-coordinate of point |
x1 |
x-coordinate of one endpoint of the line segment |
y1 |
y-coordinate of line segment endpoint with x-coordinate x1 |
x2 |
x-coordinate of other endpoint of line segment |
y2 |
y-coordinate of line segment endpoint with x-coordinate x2 |
numeric
The shortest distance between a point and a line
segment
1 | .distancePointSegment(0, 0, -1, 1, 1, -1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.