Trait veloren_common::vol::IntoVolIterator
source · pub trait IntoVolIterator<'a>: BaseVolwhere
Self::Vox: 'a,{
type IntoIter: Iterator<Item = (Vec3<i32>, &'a Self::Vox)>;
// Required method
fn vol_iter(
self,
lower_bound: Vec3<i32>,
upper_bound: Vec3<i32>,
) -> Self::IntoIter;
}
Expand description
A volume (usually rather a reference to a volume) that is convertible into an iterator to a cuboid subsection of the volume.