Trait solstice::mesh::MeshAttacher[][src]

pub trait MeshAttacher: Mesh {
    fn attach_with_step<'a, T: Mesh>(
        &'a self,
        other: &'a T,
        step: u32
    ) -> MultiMesh<'a>; fn attach<'a, T: Mesh>(&'a self, other: &'a T) -> MultiMesh<'a> { ... } }

Required methods

fn attach_with_step<'a, T: Mesh>(
    &'a self,
    other: &'a T,
    step: u32
) -> MultiMesh<'a>
[src]

Provided methods

fn attach<'a, T: Mesh>(&'a self, other: &'a T) -> MultiMesh<'a>[src]

Implementors

impl<V: Vertex> MeshAttacher for VertexMesh<V>[src]

fn attach_with_step<'a, T: Mesh>(
    &'a self,
    other: &'a T,
    step: u32
) -> MultiMesh<'a>
[src]

impl<V: Vertex, I: Index> MeshAttacher for IndexedMesh<V, I>[src]

fn attach_with_step<'a, T: Mesh>(
    &'a self,
    other: &'a T,
    step: u32
) -> MultiMesh<'a>
[src]