Struct solstice::mesh::IndexedMesh[][src]

pub struct IndexedMesh<V, I> { /* fields omitted */ }

A mesh with vertex data that is indexed with separate data.

This is useful if you have a number of vertices that you would otherwise have to duplicate because indices are generally smaller than a vertex so duplicating them is more performant.

Implementations

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

pub fn new(
    ctx: &mut Context,
    vertex_count: usize,
    index_count: usize
) -> Result<Self, GraphicsError>
[src]

Construct a mesh with a given number of vertices and indices.

pub fn with_data(
    ctx: &mut Context,
    vertices: &[V],
    indices: &[I]
) -> Result<Self, GraphicsError>
[src]

pub fn with_mesh(
    ctx: &mut Context,
    mesh: VertexMesh<V>,
    index_count: usize
) -> Result<Self, GraphicsError>
[src]

Construct an indexed mesh from a non-indexed mesh.

pub fn set_vertices(&self, ctx: &mut Context, vertices: &[V], offset: usize)[src]

Write new data into a range of the Mesh’s vertex data.

pub fn set_indices(&self, ctx: &mut Context, indices: &[I], offset: usize)[src]

Write new data into a range of the Mesh’s vertex data.

pub fn set_draw_range(&mut self, draw_range: Option<Range<usize>>)[src]

pub fn draw_range(&self) -> Range<usize>[src]

pub fn set_draw_mode(&mut self, draw_mode: DrawMode)[src]

Trait Implementations

impl<V: Debug, I: Debug> Debug for IndexedMesh<V, I>[src]

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

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

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

Auto Trait Implementations

impl<V, I> RefUnwindSafe for IndexedMesh<V, I> where
    I: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, I> Send for IndexedMesh<V, I> where
    I: Send,
    V: Send

impl<V, I> Sync for IndexedMesh<V, I> where
    I: Sync,
    V: Sync

impl<V, I> Unpin for IndexedMesh<V, I> where
    I: Unpin,
    V: Unpin

impl<V, I> UnwindSafe for IndexedMesh<V, I> where
    I: UnwindSafe,
    V: UnwindSafe

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, 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.