About 70 results
Open links in new tab
  1. Lines: Introduction, Videos, Angles, Ray, Segment, Parallel Lines - Toppr

    Definition of Line In a precise manner, a line doesn’t hold a beginning or end point. You can imagine it continuing infinitely in both directions. We can demonstrate it by little arrows trailing at both ends. …

  2. Shortest distance between a point and a line segment

    EDIT: My line segment is defined by two endpoints. So my line segment AB is defined by the two points A (x1,y1) and B (x2,y2). I'm trying to find the distance between this line segment and a point C …

  3. Testing whether a line segment intersects a sphere

    Nov 7, 2011 · I am trying to determine whether a line segment (i.e. between two points) intersects a sphere. I am not interested in the position of the intersection, just whether or not the segment …

  4. How do you detect where two line segments intersect? [closed]

    Feb 19, 2009 · Question A: Where do two line segments intersect? You know that two line segments a and b intersect. If you don't know that, check it with the tools I gave you in "Question C". Now you …

  5. How do I calculate the normal vector of a line segment?

    Apr 26, 2014 · Suppose I have a line segment going from (x1,y1) to (x2,y2). How do I calculate the normal vector perpendicular to the line? I can find lots of stuff about doing this for planes in 3D, but …

  6. Join multiple line segments into one line - GIS - Stack Overflow

    Jul 21, 2013 · This will merge them all into one segment. Then you can export the nodes (regular only), this being the points of intersection. Then you can split the dissolved line feature with the nodes. This …

  7. math - Line Equation with angle - Stack Overflow

    Oct 15, 2009 · How can I find equation of a line or draw a line, given a starting point, length of line and angle of line (relative to x-axis)?

  8. how to make a vertical line segment in plot? - Stack Overflow

    Feb 5, 2019 · Here's a simple example of using plot and lines. To draw a line from (2, 1) to (2, 4), you have to provide the x coordinates and y coordinates as (2, 2) and (1, 4):

  9. Circle line-segment collision detection algorithm? - Stack Overflow

    Jul 2, 2009 · In this post circle line collision will be checked by checking distance between circle center and point on line segment (Ipoint) that represent intersection point between normal N (Image 2) from …

  10. c# - Find if point lies on line segment - Stack Overflow

    Aug 13, 2011 · Find the distance of point P from both the line end points A, B. If AB = AP + PB, then P lies on the line segment AB.