Example #1
0
	bool bounding_box::contains(const box & box) const
	{
		const math::box & me = bounding_box::get_box();

		return me.get_min() < box.get_min()
			&& me.get_max() > box.get_max();
	}