Trait NormalPolygonGenerator

Source
pub trait NormalPolygonGenerator: PolygonGenerator + NormalGenerator {
    type Output: Polygonal;

    // Required method
    fn polygon_with_normal_from(
        &self,
        state: &Self::State,
        index: usize,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn polygon_with_normal_from( &self, state: &Self::State, index: usize, ) -> Self::Output

Implementors§