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

    // Provided method
    fn attach<'a, T: Mesh>(&'a self, other: &'a T) -> MultiMesh<'a> { ... }
}

Required Methods§

source

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

Provided Methods§

source

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

Implementors§