Function aabb2::expand_point [] [src]

pub fn expand_point<'out, 'a, 'b, T>(
    out: &'out mut AABB2<T>,
    aabb2: &'a AABB2<T>,
    p: &'b [T; 2]
) -> &'out mut AABB2<T> where
    T: Copy + Num

Examples

use aabb2::{self, AABB2};
let mut a = aabb2::new_identity();
let b = aabb2::new([-1, -1], [1, 1]);
assert_eq!(
    aabb2::expand_point(&mut a, &b, &[2, 2]),
    &AABB2{ min: [-1, -1], max: [2, 2] }
);