[][src]Struct polyhedra::Polyhedron

pub struct Polyhedron { /* fields omitted */ }

Represents an arbitrary polyhedron. It provides access to information about vertices, edges and faces, their relation to each other and their positions in 3D space.

Methods

impl Polyhedron[src]

pub fn faces(&self) -> impl IntoIterator<Item = &Face>[src]

Returns an iterator over the Faces of this polyhedron.

pub fn vertices<'a>(&'a self) -> impl IntoIterator<Item = VertexHandle> + 'a[src]

Returns an iterator over the VertexHandles of this polyhedron.

pub fn adjacent_faces(&self, face: &Face) -> Vec<&Face>[src]

Returns the faces that share an edge with the given face.

Trait Implementations

impl Debug for Polyhedron[src]

impl Into<StableGraph<Point<f32, U3>, (), Undirected, u32>> for Polyhedron[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,