#collision-detection #collision #2d-3d #convex #ray #distance #geometry

ncollide3d-updated

2 and 3-dimensional collision detection library in Rust. Will be superseded by the parry3d crate.

1 unstable release

0.35.0 Aug 31, 2023

#1299 in Algorithms

Download history 15/week @ 2024-01-04 44/week @ 2024-01-11 131/week @ 2024-01-18 337/week @ 2024-01-25 212/week @ 2024-02-01 151/week @ 2024-02-08 85/week @ 2024-02-15 152/week @ 2024-02-22 245/week @ 2024-02-29 130/week @ 2024-03-07 114/week @ 2024-03-14 68/week @ 2024-03-21 163/week @ 2024-03-28 128/week @ 2024-04-04 169/week @ 2024-04-11 139/week @ 2024-04-18

604 downloads per month

Apache-2.0

1MB
25K SLoC

Build status

2D Documentation | 3D Documentation | User Guide | Forum

⚠️**This crate is now passively-maintained. It is being superseded by the Parry project.**⚠️

ncollide

ncollide is a 2 and 3-dimensional collision detection library written with the rust programming language.

The official user guide is available here. The rustdoc documentation is available for 3D and for 2D.

Compilation

You will need the last stable build of the rust compiler and the official package manager: cargo.

Simply add one the following (or both) to your Cargo.toml file:

[dependencies]
ncollide2d = "0.33" # For 2D collision detection.
ncollide3d = "0.33" # For 3D collision detection.

Features

  • dynamic bounding volume tree based broad phase
  • ball vs. ball collision detection,
  • plane vs. any convex object collision detection.
  • collision detection between arbitrary convex objects
  • compound geometries
  • ray-casting
  • time of impact computation for objects without rotational movement (compound vs. compound is not yet implemented)

And various traits for collision detectors and broad phase collision detection.

Dependencies

~5MB
~100K SLoC