parry2d 0.26.0

2 dimensional collision detection library in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use self::mesh_intersection::{
    intersect_meshes, intersect_meshes_with_tolerances, MeshIntersectionTolerances,
};
pub use self::mesh_intersection_error::MeshIntersectionError;
use triangle_triangle_intersection::*;

use crate::math::Real;

mod mesh_intersection;
mod mesh_intersection_error;
mod triangle_triangle_intersection;

const EPS: Real = 1.0e-6;