parry3d 0.26.0

3 dimensional collision detection library in Rust.
Documentation
1
2
3
4
5
6
7
8
use parry3d::shape::Cone;

fn main() {
    let cone = Cone::new(0.5f32, 0.75);

    assert!(cone.half_height == 0.5);
    assert!(cone.radius == 0.75);
}