Add module level documentation for collide_aabb (#2152)

Related to #2105.

Doc comments are present on the `collide` function, but not on the module level.
This commit is contained in:
Federico Rinaldi 2021-05-14 18:45:31 +00:00
parent b23b23aab4
commit b4f80c29ee

View file

@ -1,3 +1,5 @@
//! Utilities for detecting if and on which side two axis-aligned bounding boxes (AABB) collide.
use bevy_math::{Vec2, Vec3};
#[derive(Debug)]