NormalIndexGenerator

Trait NormalIndexGenerator 

Source
pub trait NormalIndexGenerator: PolygonGenerator + NormalVertexGenerator {
    type Output: Polygonal<Vertex = usize>;

    // Required method
    fn index_for_normal(
        &self,
        index: usize,
    ) -> <Self as NormalIndexGenerator>::Output;
}

Required Associated Types§

Source

type Output: Polygonal<Vertex = usize>

Required Methods§

Source

fn index_for_normal( &self, index: usize, ) -> <Self as NormalIndexGenerator>::Output

Implementors§