#line #segment #intersection #find #rays #line-interval #line-relation

line_intersection

Find the intersection between two 2d lines, rays, or line segments

2 unstable releases

Uses old Rust 2015

0.4.0 Sep 6, 2017
0.3.0 Sep 1, 2017

#23 in #intersection

Download history 27/week @ 2023-11-20 41/week @ 2023-11-27 24/week @ 2023-12-04 20/week @ 2023-12-11 36/week @ 2023-12-18 16/week @ 2023-12-25 9/week @ 2024-01-01 37/week @ 2024-01-08 38/week @ 2024-01-15 19/week @ 2024-01-22 40/week @ 2024-01-29 39/week @ 2024-02-05 23/week @ 2024-02-12 50/week @ 2024-02-19 80/week @ 2024-02-26 38/week @ 2024-03-04

194 downloads per month
Used in city2ba

MIT license

12KB
181 lines

line_intersection

Crate version shield

Documentation on docs.rs

Crate on crates.io

A tiny Rust library for finding the intersection of two lines, rays, or line segments.

extern crate geo;
extern crate line_intersection;

fn main() {
    // find the intersection of a line segment and an infinite line
    use line_intersection::{LineInterval, LineRelation};
    use geo::{Coordinate, Line, Point};

    let segment = LineInterval::line_segment(Line {
        start: (0.0, 0.0).into(),
        end: (3.0, 3.0).into(),
    });

    let line = LineInterval::line(Line {
        start: (2.0, 0.0).into(),
        end: (2.0, 0.1).into(),
    });

    let intersection = segment.relate(&line).unique_intersection();
    assert_eq!(Some(Point(Coordinate { x: 2.0, y: 2.0 })), intersection);
}

License (MIT)

Copyright (c) 2017 Ulysse Carion

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Dependencies

~2.5MB
~52K SLoC