[][src]Trait acacia::partition::Subdivide

pub trait Subdivide: Sized {
    fn subdivide(&self) -> Vec<Self>;
}

A type that can be subdivided

Required methods

fn subdivide(&self) -> Vec<Self>

Subdivide into smaller partitions

Loading content...

Implementors

impl Subdivide for CubeMap[src]

impl Subdivide for Quad[src]

impl Subdivide for UnitQuad[src]

impl<D, S> Subdivide for Ncube<D, S> where
    D: DimName,
    S: Scalar + PartialOrd + NumCast + Copy + Float,
    Point<S, D>: Copy,
    DefaultAllocator: Allocator<S, D>, 
[src]

impl<T: Mid + PartialOrd + Copy> Subdivide for Box2<T>[src]

impl<T: Mid + PartialOrd + Copy> Subdivide for Box3<T>[src]

impl<T: Mid + Copy> Subdivide for Interval<T>[src]

Loading content...