[][src]Trait plexus::primitive::decompose::IntoVertices

pub trait IntoVertices: Topological {
    type Output: IntoIterator<Item = Self::Vertex>;
    fn into_vertices(self) -> Self::Output;
}

Associated Types

type Output: IntoIterator<Item = Self::Vertex>

Loading content...

Required methods

fn into_vertices(self) -> Self::Output

Loading content...

Implementors

impl<T> IntoVertices for Polygon<T>[src]

type Output = Vec<Self::Vertex>

impl<T> IntoVertices for Edge<T>[src]

type Output = ArrayVec<[Self::Vertex; 2]>

impl<T> IntoVertices for Quad<T>[src]

type Output = ArrayVec<[Self::Vertex; 4]>

impl<T> IntoVertices for Triangle<T>[src]

type Output = ArrayVec<[Self::Vertex; 3]>

Loading content...