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

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

Provided methods

fn attach<'a, T: Mesh>(&'a self, other: &'a T) -> MultiMesh<'_, &'a Self>

fn attach_with_step<'a, T: Mesh>(
    &'a self,
    other: &'a T,
    step: u32
) -> MultiMesh<'_, &'a Self>

Loading content...

Implementors

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

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

Loading content...