ami 0.13.1

Useful data structures that are not in the standard library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Jeron A. Lau 2017-2018.
// Copyright Douglas Lau 2017
// Dual-licensed under either the MIT License or the Boost Software License,
// Version 1.0.  (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)

use BBox;

/// `Collider` has bounding box and id.
pub trait Collider {
	/// Get the `BBox` for this collider.
	fn bbox(&self) -> BBox;
}