Crate bbox[][src]

bbox is crate for managing axis aligned 3d Bounding Boxes. Bounding Boxes can be created, dilated, transformed and joined with other Bounding Boxes using CSG operations. Finally you can test whether or not a Bounding Box contains some point and what approximate distance a Point has to the Box.

Examples

Intersect two Bounding Boxes:

extern crate nalgebra as na;
extern crate bbox;
let bbox1 = bbox::BoundingBox::<f64>::new(&na::Point3::new(0., 0., 0.),
                                          &na::Point3::new(1., 2., 3.));
let bbox2 = bbox::BoundingBox::<f64>::new(&na::Point3::new(-1., -2., -3.),
                                          &na::Point3::new(3., 2., 1.));
let intersection = bbox1.intersection(&bbox2);

Rotate a Bounding Box:

extern crate nalgebra as na;
extern crate bbox;
let rotation = na::Rotation::from_euler_angles(10., 11., 12.).to_homogeneous();
let bbox = bbox::BoundingBox::<f64>::new(&na::Point3::new(0., 0., 0.),
                                         &na::Point3::new(1., 2., 3.));
let rotated_box = bbox.transform(&rotation);

Is a point contained in the Box?

extern crate nalgebra as na;
extern crate bbox;
let bbox = bbox::BoundingBox::<f64>::new(&na::Point3::new(0., 0., 0.),
                                         &na::Point3::new(1., 2., 3.));
let result = bbox.contains(&na::Point3::new(1., 1., 1.));

Calculate approximate distance of a point to the Box:

extern crate nalgebra as na;
extern crate bbox;
let bbox = bbox::BoundingBox::<f64>::new(&na::Point3::new(0., 0., 0.),
                                         &na::Point3::new(1., 2., 3.));
let distance = bbox.distance(&na::Point3::new(1., 1., 1.));

Structs

BoundingBox

3D Bounding Box - defined by two diagonally opposing points.