logo
pub trait VertexNormal: FaceNormal where
    Self::Vertex: AsPosition
{ fn normal<B>(
        vertex: VertexView<B>
    ) -> Result<Vector<VertexPosition<Self>>, GraphError>
    where
        B: Reborrow,
        B::Target: AsStorage<Arc<Self>> + AsStorage<Face<Self>> + AsStorage<Vertex<Self>> + Consistent + Parametric<Data = Self>
; }

Required Methods

Implementors