Function aabb3::new_identity [] [src]

pub fn new_identity<T>() -> AABB3<T> where
    T: Copy + Num

Examples

use aabb3::{self, AABB3};
assert_eq!(&aabb3::new_identity::<u8>(), &AABB3{ min: [255, 255, 255], max: [0, 0, 0] });