ball2d/
ball2d.rs

1use parry2d::shape::Ball;
2
3fn main() {
4    let ball = Ball::new(1.0);
5    assert!(ball.radius == 1.0);
6}