Trait meshx::mesh::VertexMesh

source ·
pub trait VertexMesh<T>: Attrib + VertexAttrib + NumVertices + VertexPositions<Element = [T; 3]> { }
Expand description

VertexMesh is a marker trait to allow user code to be generic over vertex centric meshes with intrinsic vertex positions attributes.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<M, T> VertexMesh<T> for M